mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-10-31 18:23:12 +01:00
21 lines
282 B
Django/Jinja
21 lines
282 B
Django/Jinja
input {
|
|
beats {
|
|
port => 5044
|
|
}
|
|
|
|
tcp {
|
|
port => 5000
|
|
}
|
|
}
|
|
|
|
## Add your filters / logstash plugins configuration here
|
|
|
|
output {
|
|
elasticsearch {
|
|
hosts => "elasticsearch:9200"
|
|
user => "elastic"
|
|
password => "{{elastic_search_password}}"
|
|
ecs_compatibility => disabled
|
|
}
|
|
}
|