update 优化 ELK docker编排

This commit is contained in:
疯狂的狮子li
2022-07-12 14:12:44 +08:00
parent fae0df1905
commit cd892d957f
6 changed files with 15 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
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}"
}
}