Splunk Search

Count occurrences of string and put them in table row wise?

Vivekmishra01
Explorer

I am trying to find few strings in my search query and count occurrences of them and I want to put them in a two column table. I am able to do it with stat command, but it's coming like string as column name and count in the row bwlow. Below is what I am using and what I ma getting.

 

 

 

index=<index> <search String > "Failed" | stats count AS Failed count(eval(searchmatch("Failed Acknowledged"))) AS "Failed Acknowledged" count(eval(searchmatch("UnexpectedException Caught"))) AS "UnexpectedException Caught" count(eval(searchmatch("NonRetryableException Caught"))) AS "NonRetryableException Caught"

 

 

 

However I want a result like below.

Vivekmishra01_0-1673363523720.png

Can anyone help? Thanks in advance.

Labels (3)
Tags (2)
0 Karma
1 Solution

GaetanVP
Contributor

Hello ! 

You could try this :

<your search> | transpose 0 column_name="Message" | rename "row 1" as Count

 

Good luck!

View solution in original post

FelixLeh
Communicator

Hi!
Is this accomplishing what you are looking for? (I assume you are working with untransformed Events here)

 

index=<index> <search String > "Failed" 
| eval Message = case(like(_raw,"%Failed Acknowledged%"),"Failed Acknowledged",like(_raw,"%UnexpectedException Caught%"),"UnexpectedException Caught",like(_raw,"%NonRetryableException Caught%"),"NonRetryableException Caught",true(),NULL)
| stats count by Message 

 

 If you want to add a line that sums up the total amount of events you can add the following:

 

| addtotals fieldname=count col=t labelfield=Message

 

0 Karma

GaetanVP
Contributor

Hello ! 

You could try this :

<your search> | transpose 0 column_name="Message" | rename "row 1" as Count

 

Good luck!

Get Updates on the Splunk Community!

Devesh Logendran, Splunk, and the Singapore Cyber Conquest

At this year’s Splunk University, I had the privilege of chatting with Devesh Logendran, one of the winners in ...

There's No Place Like Chrome and the Splunk Platform

WATCH NOW!Malware. Risky Extensions. Data Exfiltration. End-users are increasingly reliant on browsers to ...

Customer Experience | Join the Customer Advisory Board!

Are you ready to take your Splunk journey to the next level? &#x1f680; We invite you to join our elite squad ...