Files
elk-lab/logstash/pipeline/logstash.conf
T
2026-03-14 16:20:35 +01:00

14 lines
208 B
Plaintext

input {
beats {
port => 5044
}
}
output {
elasticsearch {
hosts => ["http://elasticsearch:9200"]
user => "myadmin"
password => "mypassw0rd!"
index => "logstash-%{+YYYY.MM.dd}"
}
}