Splunk Search

How to combine two events based on common field?

dminev1
Explorer

Hi everyone,

I am using splunk for about two week at my work and I have task to build dashboard. I have splunk query that extracts data from 2 different events but in the same source. The events share common ID. I am trying to combine the events based on the ID and represent the data from both events in a dashboard. I tried with multisearch and by. None of them worked. Can anyone give me a hit on how to approach this problem? Here is the query and a screen shot from the result:

index=?????? sourcetype=???? host=????? source=????????? "Number of Clients" OR "Duration::  in " 
              | rex field=_raw "Number of Clients: (?<ClientCount>\d+)"
              | rex field=_raw "cid:(?<CID>\w+-\w+-\w+-\w+-\w+)" 
              | rex field=_raw "Duration::  in (?<Duration>\d+.\d+)"
              | eval Size = if(ClientCount == 0, "Not part of association", if(ClientCount <= 3, "Small", if(ClientCount <= 10 ,"Medium",if (ClientCount > 10, "Large", ClientCount))))
              | table Size Duration CID

alt text

Tags (3)
0 Karma
1 Solution

dminev1
Explorer

Got it working. Here is the solution

index=??? sourcetype=??? host=???? source=???? ("Number of Clients" OR "Duration::  in ")
              | rex field=_raw "Number of Clients: (?<ClientCount>\d+)"
              | rex field=_raw "cid:(?<CID>\w+-\w+-\w+-\w+-\w+)" 
              | rex field=_raw "Duration::  in (?<Duration>\d+.\d+)"
              | eval Size = if(ClientCount == 0, "Not part of association", if(ClientCount <= 3, "Small", if(ClientCount <= 10 ,"Medium",if (ClientCount > 10, "Large", ClientCount))))
              | stats values(Duration) as Duration values(Size) as Size by CID

View solution in original post

0 Karma

dminev1
Explorer

Got it working. Here is the solution

index=??? sourcetype=??? host=???? source=???? ("Number of Clients" OR "Duration::  in ")
              | rex field=_raw "Number of Clients: (?<ClientCount>\d+)"
              | rex field=_raw "cid:(?<CID>\w+-\w+-\w+-\w+-\w+)" 
              | rex field=_raw "Duration::  in (?<Duration>\d+.\d+)"
              | eval Size = if(ClientCount == 0, "Not part of association", if(ClientCount <= 3, "Small", if(ClientCount <= 10 ,"Medium",if (ClientCount > 10, "Large", ClientCount))))
              | stats values(Duration) as Duration values(Size) as Size by CID
0 Karma

adonio
Ultra Champion

very good,
if it works for you, kindly mark the answer as accepted, and upvote ant helpful comments if any so others will know this solution worked for you.

thanks and happy splunking!

0 Karma

adonio
Ultra Champion

try this:

index=?????? sourcetype=???? host=????? source=????????? "Number of Clients" OR "Duration:: in " 
| rex field=_raw "Number of Clients: (?\d+)" 
| rex field=_raw "cid:(?\w+-\w+-\w+-\w+-\w+)" 
| rex field=_raw "Duration:: in (?\d+.\d+)" 
| eval Size = if(ClientCount == 0, "Not part of association", if(ClientCount <= 3, "Small", if(ClientCount <= 10 ,"Medium",if (ClientCount > 10, "Large", ClientCount)))) 
| stats values(CID) as CID by  Duration SIze
0 Karma

dminev1
Explorer

Doesn't return any result. Thanks for the reply.

0 Karma

adonio
Ultra Champion

try Size i hade it with CAPITAL I there by accident

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...