mall/document/elk/logstash-springboot.conf
2018-09-11 15:54:16 +08:00

10 lines
164 B
Plaintext

input {
tcp {
port => 4560
codec => json_lines
}
}
output{
elasticsearch { hosts => ["localhost:9200"] }
stdout { codec => rubydebug }
}