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!

Take Action Automatically on Splunk Alerts with Red Hat Ansible Automation Platform

 Are you ready to revolutionize your IT operations? As digital transformation accelerates, the demand for ...

Calling All Security Pros: Ready to Race Through Boston?

Hey Splunkers, .conf25 is heading to Boston and we’re kicking things off with something bold, competitive, and ...

Beyond Detection: How Splunk and Cisco Integrated Security Platforms Transform ...

Financial services organizations face an impossible equation: maintain 99.9% uptime for mission-critical ...