Hi cmahan,
take a look at this run everywhere command:
index=_internal sourcetype=splunkd series=splunkd earliest=-11min@min
| bucket _time span=10min
| search NOT [ search index=_audit action=search ]
| timechart span=1min count
it searches for events in the _internal index over the last 11 minutes, creates buckets of 10 minutes span and searches within this time span if there was no match for action=search in index=_audit . Yes this is a non-sense use case but it will help you understand your alert 😉
Based on this and your comments, try something like:
sourcetype="WMI:Service" Name=slinksc State=Stopped earliest=-11min@min
| bucket _time span=10min
| search NOT [ search EventCode=1074 ]
I removed the map command, because it is just too messy.
cheers, MuS
... View more