I need to count the number of times an alert has triggered in a specific time window (say, last 24 hours). I am trying to do that via | rest but noticed the counts remain constant despite changing the search time interval (60m, yesterday, last 7d, 15m, etc.). What "time" does the | rest search or return results for? I tried reading the docs on rest and and the user manual for REST API but nothing quite explains it. Current SPL | rest /services/alerts/fired_alerts splunk_server=local
| search author="me@me.com"
| table eai:acl.app eai:acl.owner id title triggered_alert_count
| rename eai:acl.* as *, app as App, owner as Owner, id as Endpoint, title as Title, triggered_alert_count as "Count of Triggered Alerts"
... View more