Files
ServerManagementUtils/logstash/90-output.conf
T
2025-06-28 14:28:48 +02:00

12 lines
315 B
Plaintext

output {
# Forward logs to Elasticsearch
elasticsearch {
hosts => ["http://localhost:9200"]
index => "replace-index" # Index pattern based on log type and date
user => "replace-user"
password => "replace-password"
}
if "_grokparsefailure" in [tags] {
stdout { codec => rubydebug }
}
}