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

11 lines
154 B
Text
Raw Normal View History

2018-10-23 10:41:17 +02:00
input {
tcp {
port => 6379
codec => json_lines
}
}
output {
elasticsearch { hosts => ["localhost:9200"] }
stdout { codec => rubydebug }
}