1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/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" ]
}
}