Files
elk-docker-base/elk-config/logstash/Logstash.conf
2025-01-15 05:40:18 -06:00

17 lines
232 B
Plaintext
Executable File

input {
beats{
port => 5044
}
}
filter {
}
output {
elasticsearch {
hosts => "http://elasticsearch:9200"
index => "%{[@metadata][beat]}-%{[@metadata][version]}"
user => "elastic"
password => "password"
}
}