Splunk Search

Finding Unique Pairs of Data in Interchangeable Fields

lboro_garyp
Path Finder

Hi folks, I'm parsing Cisco Callmanager call detail records in our splunk system and I'd like to see which pairs of telephone numbers have the most calls between them, but here's the tricky bit: I don't care who called who, I want to aggregate calls from A->B and B->A into one counter and list the top 10 pairs of callers who make the most calls to each other.

The code below is giving me a nice list of top calling pairs at the moment, but A->B and B->A are listed as two distinct pairs, how do I aggregate them?

index=cucm | stats count by callingPartyNumber,finalCalledPartyNumber |sort by -count
0 Karma
1 Solution

somesoni2
Revered Legend

Give this a try

index=cucm 
| eval callParticipents=mvsort(split(callingPartyNumber."#".finalCalledPartyNumber,"#") | nomv callParticipents| stats count by callParticipents |sort by -count

View solution in original post

0 Karma

somesoni2
Revered Legend

Give this a try

index=cucm 
| eval callParticipents=mvsort(split(callingPartyNumber."#".finalCalledPartyNumber,"#") | nomv callParticipents| stats count by callParticipents |sort by -count
0 Karma

lboro_garyp
Path Finder

Brilliant! It was missing a bracket but did the trick once I popped it back in 🙂

The most important part seems to be

eval callParticipents=mvsort(split(callingPartyNumber."#".finalCalledPartyNumber,"#"))

...but I can't quite figure it out, could you explain it, please? I get that we're creating a new multivalue field to work with called callParticipents for each event in the timeframe. I guess it doesn't matter which order the values go into the field A/B is the same as B/A for the purposes of a multivalue field, right? I just can't grok how callParticipents is built from that line

edit

Never mind, I sat down and read the docs on split and the mv commands and I get it now. Thanks so much!

0 Karma
Get Updates on the Splunk Community!

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 ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...