You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
input {
|
|
tcp {
|
|
mode => "server"
|
|
host => "0.0.0.0"
|
|
port => 4560
|
|
codec => json_lines
|
|
}
|
|
}
|
|
output {
|
|
elasticsearch {
|
|
hosts => "127.0.0.1:9200"
|
|
index => "%{[spring.application.name]}-%{+YYYY.MM.dd}"
|
|
}
|
|
}
|