Splunk Search

Get distinct count from different sources

raghubankapur
Engager

I have 3 different sources of the same filed. I want to aggregate all the 3 sources and get the distinct count of the field

eg.

sourcetype=source1 | stats dc(userlist)

sourcetype=source2 | stats dc(line.userlist)

sourcetype=source3 | stats dc(line.subject)

 

Here userlist, line.userlist, line.subject are all the same attributes but being logged differently. Now I want to get the dc of userlist+line.userlist+line.subject. Any help is appreciated.

Labels (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Assuming that the fields only exist in their respective sourcetypes, you could try something like this

sourcetype=source1 OR sourcetype=source2 OR sourcetype=source3
| eval userlist=coalesce(userlist, line.userlist, line.subject)
| stats dc(userlist)

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Assuming that the fields only exist in their respective sourcetypes, you could try something like this

sourcetype=source1 OR sourcetype=source2 OR sourcetype=source3
| eval userlist=coalesce(userlist, line.userlist, line.subject)
| stats dc(userlist)
0 Karma

raghubankapur
Engager

This works well @ITWhisperer 

0 Karma
Get Updates on the Splunk Community!

Aligning Observability Costs with Business Value: Practical Strategies

 Join us for an engaging Tech Talk on Aligning Observability Costs with Business Value: Practical ...

Mastering Data Pipelines: Unlocking Value with Splunk

 In today's AI-driven world, organizations must balance the challenges of managing the explosion of data with ...

Splunk Up Your Game: Why It's Time to Embrace Python 3.9+ and OpenSSL 3.0

Did you know that for Splunk Enterprise 9.4, Python 3.9 is the default interpreter? This shift is not just a ...