hi logstash,
Is it possible to spilt the log as below based on ',' to array ?
"message" => "....",
"host" => "10.10.11.12",
"@version" => "1",
"@timestamp" => "2016-04-13T01:52:43.535Z",
"DISMAN-EVENT-MIB::sysUpTimeInstance" => "22 days, 16:33:23.24",
"sixth_filed::bgpPeerLastError_A_1_1_1_1" => "sixth_filed_content",
"seven_filed::bgpPeerLastError_A_1_1_1_1" => "seven_filed_content",
"source_ip" => "10.10.11.12"
array looks like ,
[message] = "...",
[host] = "10.10.11.12",
[version] = "1",
[timestamp]="2016-04-13T01:52:43.535Z"
....... ..
Any and all help is much appreciated!