Has anyone built any SIEM Dashboards in SecOps to monitor for latency? I'm specifically interested in finding a solution to monitoring the difference between event_timestamps and ingestion_timestamps by log type. I'd want to visualize the average difference, per log type, based on whatever timeframe I search on.
Solved
Log Latency Dashboard
Best answer by amithpatil
If you're using native dashboards , You can write a query something similar to below to achieve this :
match:
metadata.log_type
outcome:
$event_count = count_distinct(metadata.id)
$event_latency = avg(metadata.ingested_timestamp.seconds - metadata.event_timestamp.seconds)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.