mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-13 00:11:05 +01:00
21 lines
263 B
Plaintext
21 lines
263 B
Plaintext
input {
|
|
beats {
|
|
port => 5044
|
|
}
|
|
|
|
tcp {
|
|
port => 5000
|
|
}
|
|
}
|
|
|
|
## Add your filters / logstash plugins configuration here
|
|
|
|
output {
|
|
elasticsearch {
|
|
hosts => "elasticsearch:9200"
|
|
user => "elastic"
|
|
password => "changeme"
|
|
ecs_compatibility => disabled
|
|
}
|
|
}
|