computer-playbook/roles/docker-elk/templates/logstash.conf.j2

21 lines
282 B
Plaintext
Raw Normal View History

2020-12-30 15:41:34 +01:00
input {
beats {
port => 5044
}
tcp {
port => 5000
}
}
## Add your filters / logstash plugins configuration here
output {
elasticsearch {
hosts => "elasticsearch:9200"
user => "elastic"
2020-12-30 20:58:10 +01:00
password => "{{elastic_search_password}}"
2020-12-30 15:41:34 +01:00
ecs_compatibility => disabled
}
}