Splunk Search

How to get a stats count by field values from my current table?

ashish9433
Communicator

Hi Team,

I have a table in Splunk which is as below

Name    Val1    Val2     Val3     Val4
abc      YES      No      Yes       No
xyz       No     Yes      Yes       No
pqr       No     Yes       No       No
mno      Yes      No      Yes      Yes

I want the result to be as count of yes & no by Name for all val1 val2.... and it should look like below

Val        Yes          No
Val1        2            2
Val2        2            2
Val3        3            1
Val4        1            3

Can anyone please help me how can i proceed to get above output.

0 Karma
1 Solution

woodcock
Esteemed Legend

Add this:

| untable Name Val YesOrNo
| stats count(eval(match(YesOrNo,"(?i)yes"))) AS Yes count(eval(match(YesOrNo,"(?i)no"))) AS No BY Val

View solution in original post

woodcock
Esteemed Legend

Add this:

| untable Name Val YesOrNo
| stats count(eval(match(YesOrNo,"(?i)yes"))) AS Yes count(eval(match(YesOrNo,"(?i)no"))) AS No BY Val

ashish9433
Communicator

Fantastic, this is what i needed! I tried so many things, but it was untable which came to rescue.

Thanks @woodcock for your quick answer.

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...