14 lines
211 B
Plaintext
14 lines
211 B
Plaintext
input {
|
|
tcp {
|
|
mode => "server"
|
|
host => "0.0.0.0"
|
|
port => 4560
|
|
codec => json_lines
|
|
}
|
|
}
|
|
output {
|
|
elasticsearch {
|
|
hosts => "es:9200"
|
|
index => "springboot-logstash-%{+YYYY.MM.dd}"
|
|
}
|
|
} |