Closed wiibaa closed 8 years ago
From LOGSTASH-1795
Using following config:
output { if [type] == 'apache_access' { file { path => "/tmp/logstash.out" codec => oldlogstashjson {} } file { path => "/tmp/logstash.out.json" codec => json {} } file { path => "/tmp/logstash.out.plain" codec => plain {} } } }
Expected: each event written in 3 different formats. Actual result: all written in (new) json format.
:+1: I just ran into this today when using the file output. This doesn't seem like it should be that hard... Will take a look and see
Fixed with #9
From LOGSTASH-1795
Using following config:
Expected: each event written in 3 different formats. Actual result: all written in (new) json format.