Files
ServerManagementUtils/logstash/conf.d/90-output.conf
T

11 lines
242 B
Plaintext

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