Splunk Search

Alert on sourcetype results

asarolkar
Builder

All,

I have a sourcetype that gives me different account names (eg. boa, ml, goldman etc)

sourcetype="banklogs" | dedup accountName 

I want to create an alert such that if the count of these accountNames is less than 7, it will email me with the accountName that was not reported by the sourcetype in that 24 hour period.

Is there a way to do that ( I can use stats and COUNT them always - send an email when its less than 7 - but all i want to do is to report the missing accountName)

Any ideas on how to go about this ?

0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

Something along the lines of this might work:

sourcetype="banklogs" | timechart span=1d limit=0 count by accountName | tail 1 | fields - _time _spandays | transpose | rename "row 1" as count column as accountName | where count = 0 | fields - count

If there is a row it'll contain the accountName that signed one some time during the search interval but didn't in the last day.

View solution in original post

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Something along the lines of this might work:

sourcetype="banklogs" | timechart span=1d limit=0 count by accountName | tail 1 | fields - _time _spandays | transpose | rename "row 1" as count column as accountName | where count = 0 | fields - count

If there is a row it'll contain the accountName that signed one some time during the search interval but didn't in the last day.

0 Karma

asarolkar
Builder

Simply brilliant !!!!!!!!!!!!!!!

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...