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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...

Index This | How many sevens are there between 1 and 100?

August 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this ...