1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-07-05 17:41:30 +00:00
dockerfiles/elk/data/pipelines/main/logstash.conf

21 lines
238 B
Plaintext
Raw Normal View History

2018-01-06 13:38:57 +00:00
input {
beats {
port => 5044
}
2018-01-25 08:01:00 +00:00
gelf {
port => 12201
}
2018-01-06 13:38:57 +00:00
}
output {
stdout {
2019-11-04 18:09:26 +00:00
codec => rubydebug {
metadata => true
}
2018-01-06 13:38:57 +00:00
}
elasticsearch {
hosts => [ "elasticsearch:9200" ]
2019-11-04 18:09:26 +00:00
ilm_enabled => false
2018-01-06 13:38:57 +00:00
}
}