alerta_alerta-contrib/plugins/logstash/logstash-simple.conf

11 lines
154 B
Plaintext

input {
tcp {
port => 6379
codec => json_lines
}
}
output {
elasticsearch { hosts => ["localhost:9200"] }
stdout { codec => rubydebug }
}