Splunk Search

How to group two different fields which have same values?

Span
Engager

Hi,

I have below kind of messages

Received abc message

Error processing abc message

Received def message

Received ghi message

Received ghi message

Error processing ghi message

 

I am looking for an output like below
Topic recievedcount erroredcount 

abc         1                            1

def           1                           0

ghi            2                            1

 

I tried below 

index="foo" "Received" OR "Error processing" | rex "Received (?<a>.*) message" | rex "Error processing (?<b>.*) message" | stats count(a) as received, count(b) as errored  by a

But the problem is want my topic on first column which is there in 2 different fields  a and b and cannot group by value. Any help on this is appreciated

 

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

You almost had it!  Combine a and b into c for grouping and you should get the desired result.

index="foo" ("Received" OR "Error processing" )
| rex "Received (?<a>.*) message" 
| rex "Error processing (?<b>.*) message" 
| eval c = coalesce(a, b)
| stats count(a) as received, count(b) as errored by c
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

You almost had it!  Combine a and b into c for grouping and you should get the desired result.

index="foo" ("Received" OR "Error processing" )
| rex "Received (?<a>.*) message" 
| rex "Error processing (?<b>.*) message" 
| eval c = coalesce(a, b)
| stats count(a) as received, count(b) as errored by c
---
If this reply helps you, Karma would be appreciated.
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...

What Is the Name of the USB Key Inserted by Bob Smith? (BOTS Hint, Not the Answer)

Hello Splunkers,   So you searched, “what is the name of the usb key inserted by bob smith?”  Not gonna lie… ...

Automating Threat Operations and Threat Hunting with Recorded Future

    Automating Threat Operations and Threat Hunting with Recorded Future June 29, 2026 | Register   Is your ...