I am getting the following event in my filter section
{
"@timestamp" => 2017-06-23T06:16:05.000Z,
"@version" => "1",
"event" => {
"logLevel" => "INFO",
"description" => "This is description",
"className" => "ClassName",
"eventType" => "TEST_EVENT"
}
}
I want to remove event parent from the json. Output expected
{
"@timestamp" => 2017-06-23T06:16:05.000Z,
"@version" => "1",
"logLevel" => "INFO",
"description" => "This is description",
"className" => "ClassName",
"eventType" => "TEST_EVENT"
}
Any help would be appreciated.