0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-17 05:52:38 +00:00
alerta_alerta-contrib/plugins/logstash/logstash-simple.conf
2018-10-23 10:41:17 +02:00

10 lines
154 B
Text

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