2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-28 07:56:32 +01:00
Files
dockerfiles_vimagick/elk/data/pipeline/logstash.conf
2018-01-25 16:01:00 +08:00

18 lines
182 B
Plaintext

input {
beats {
port => 5044
}
gelf {
port => 12201
}
}
output {
stdout {
codec => rubydebug
}
elasticsearch {
hosts => [ "elasticsearch:9200" ]
}
}