Splunk Search

How to count the flag values assigned in a column from an eval?

packet_hunter
Contributor

Scenario:
I have a search that evaluates email events (given a specific subject) to count the number of recipients per individual email and then sum the total number of recipients from all emails (given the same subject). The search also looks for recipients on a watch_list.csv with a flag to create a yes or no value next to the watched emailaddress.

Now I need a column (total_on_watch_list) with the total number of "yes" recipients.

Search:

index=mail sourcetype=xemail [search index=mail sourcetype=xemail subject = "Blah" |stats count by UID| fields UID] 
|stats list(subject) as subj list(sender) as sender list(recipient) as recp list(vendor_action) as status by UID            
|lookup watch_list.csv emailaddress as recp OUTPUT flag emailaddress 
|eval on_watch_list=if(flag=1,"yes","no") 
| fields - flag         
|eval recp_count=mvcount(recp)          
|eventstats sum(recp_count) as total_recipients

Please provide an example.

Much appreciated

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

Try something like this

your current search  | eventstats count(eval(on_watch_list="yes"))) as total_on_watch_list 

View solution in original post

0 Karma

somesoni2
Revered Legend

Try something like this

your current search  | eventstats count(eval(on_watch_list="yes"))) as total_on_watch_list 
0 Karma

packet_hunter
Contributor

| eventstats count(eval(on_watch_list = "yes")) as total_on_watch_list

works great!!! Thank you!

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...