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!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...