Hello, I would like to provide solution for integration njmon with ELK stack. I created this pipeline for Logstash which reads events from njmon output files and push them into elasticsearch index . pipeline/njmon.conf input { file { path => "/tmp/njmon/*.json" type => "njmon" codec => multiline { pattern => "(^\s\s\{)|(^{)|(^\s\s})|(^\s\s},)" negate => true what => "previous" max_lines => 2000 # max_lines default value is 500. So I extended it to to get full event data } } } filter { if [type] ==...