logstash에서 json을 파싱할 때, root에 추가하기
-
json filter plugin을 사용하고 target을 지정하지 않으면 root로 들어가게 된다.
filter { grok { match => "test %{GREEDYDATA:jsonString}" } json { source => "jsonString" } }
json filter plugin을 사용하고 target을 지정하지 않으면 root로 들어가게 된다.
filter {
grok {
match => "test %{GREEDYDATA:jsonString}"
}
json {
source => "jsonString"
}
}