1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-22 19:05:47 +00:00
dockerfiles/elk/data/pipeline/logstash.conf
2018-01-06 21:38:57 +08:00

15 lines
151 B
Plaintext

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