ft_transcendence/logstash.conf
2024-08-07 14:12:59 +02:00

18 lines
214 B
Plaintext

input {
beat {
port => 5044
}
}
filter {
}
output {
elasticsearch {
hosts => ["http://es01:9200"]
index => "docker-logs-%{+YYYY.MM.dd}"
user=> "${ELASTIC_USER}"
password=> "${ELASTIC_PASSWORD}"
}
}