Splunk Search

How to sum of distinct count of different fields?

pinpra
New Member

I need to sum of distinct count(emal_id) if event_name=email and distinct_count(person_id) if event_name=push. And sum of these distinct count need to be in one field.

Please suggest.

Any help would be highly appreciated.

0 Karma

sbbadri
Motivator

| eval dc_email_id=if(event_name=="email",somefield1,0)
| eval dc_persion_id=if(event_name="push",somefield2,0)
| stats dc(dc_email_id) as emailID,dc(dc_person_id) as personID by event_name| eval somefield_name = emailID + personID

0 Karma
Get Updates on the Splunk Community!

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...