Useful Queries
Default Device Stopped Sending Logs for Half an Hour
| chart max(col_ts) as max_time_ts by device_ip | process current_time(a) as time | chart max(time-max_time_ts) as elapsed_time by max_time_ts, device_ip | search elapsed_time>1800Time Difference Between col_ts and log_ts
| process eval("diff=col_ts-log_ts") |chart count() by diff,device_name order by diff desc limit 10 | search diff > 300 Check Actual EPS
source_name="/opt/immune/var/log/benchmarker/store_handler.log" | fields log_ts, service, action, actual_mps, doable_mpsShow events for hours, minutes and seconds on individual devices
| chart count() as Events_per_hour, sum(1/60) as Events_per_minute, sum(1/3600) as Events_per_second by device_name order by Events_per_minute DESC limit 25Exporting RAW logs into CSV from the GUI
Last updated
Was this helpful?