eventtype=my_nav_data
| eval lattitude = if(match(eventtype, "my_nav_data"), eventfield_1, null)
| eval longitude = if(match(eventtype, "my_nav_data"), eventfield_2, null)
| eval Altitude = if(match(eventtype, "my_nav_data"), tonumber(eventfield_3), null)
| where isnotnull(lattitude) AND isnotnull(longitude)
| geostats latest(_time) as epoch_time, latest(Altitude) as Altitude latfield=lattitude longfield=longitude I tried evaluating the time after geostats as well but still the time in human readable format does not appear while hovering in map.
... View more