linux-tutorial/codes/olddeploy/elk/config/logstash-input-tcp.conf
2018-02-01 16:34:02 +08:00

13 lines
191 B
Plaintext

input {
tcp {
port => 9251
codec => json_lines
mode => server
tags => ["javaapp"]
}
}
output {
elasticsearch { hosts => ["localhost:9200"] }
stdout { codec => rubydebug }
}