below is my log line , I use the json filter and that works perfectly fine. I just need to get the log time stamp sorted in a readable format .
timestamp:"unix timestamp, in nanoseconds, when the log message was created"
"timestamp": 1497360775545000192,
trying this and isn't working
mutate {
rename field from 'name' to 'browser_name'
rename => { "timestamp" => "logtimestamp" }
}
mutate {
convert => {"logtimestamp" => "integer" }
}
date {
match => ["logtimestamp", "UNIX" ]
target => "logTimestamp_updated"
}