0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-17 22:12:38 +00:00
alerta_alerta-contrib/plugins/logstash/logstash-simple.conf

11 lines
154 B
Text
Raw Normal View History

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