Files
ServerManagementUtils/logstash/conf.d/90-output.conf
T
2025-09-26 06:56:14 +02:00

11 lines
245 B
Plaintext

output {
# Forward logs to Elasticsearch
elasticsearch {
hosts => ["http://replace-host:9200"]
user => "replace-user"
password => "replace-password"
}
if "_grokparsefailure" in [tags] {
stdout { codec => rubydebug }
}
}