logstash笔记
1. 在window上直接复制文件路径的话是右斜杠隔开的 ,只要改成左斜杠就行了
2. 启动命令: .inlogstash -f .configlogstash-spring.conf
3. 输入为文件 输出到控制台
input {
file {
type => "test"
path => "C:/logstash-7.11.0/testlog/*.log"
# start_position => "beginning"
codec => json
}
}
output {
stdout{
codec => json
}
}
4. 从本地的4560端口取日志。springboot 将日志发送到该端口,logstash监听端口产生的数据
input {
tcp {
host =>"0.0.0.0"
port => 4560
# codec => json_lines # 需要安装logstash-codec-json_lines插件
}
}
output {
stdout{
# codec => json
}
}