공백으로 구분된 데이터.
[2025-01-14T21:09:09,525][INFO ][logstash.agent ] Pipelines running {:count=>1, :running_pipelines=>[:main], :non_running_pipelines=>[]}{ "message" => "a b c\r"}
mutate 필터의 split 옵션을 적용하면 다중값 구조로 바뀐다.
filter { mutate { remove_field => ["host", "@version", "path", "@timestamp"] split => {"message" => " "} }}