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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...