1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-09 11:31:45 +00:00
dockerfiles/elk/data/pipeline/logstash.conf

15 lines
151 B
Plaintext
Raw Normal View History

2018-01-06 13:38:57 +00:00
input {
beats {
port => 5044
}
}
output {
stdout {
codec => rubydebug
}
elasticsearch {
hosts => [ "elasticsearch:9200" ]
}
}