Splunk Search

grouping and counting rows with respect to 2 values

Andr3A
Engager

Hi everyone, after a search with some eval e rex commands, I end up in a table like this:

 

ID --- FIELD(1) --- FIELD(2) --- FIELD(3) --- ... --- FIELD(9)
id(1) --- OK --- Alert --- Alert --- OK --- ... --- OK

id(2) --- OK --- OK --- OK --- Alert --- ... --- OK

id(3) --- Alert --- Alert --- OK --- ... --- OK

.

.

.

id(10000) --- OK --- Alert --- OK --- OK --- ... --- Alert

So I have a 10000x10 table where the first field represents an id for the row, while the other fields can take only 2 values (OK or Alert).

 

I'd like to get a summury with respect to the field ID like this:

                        OK                 ALERT

FIELD1

FIELD2

FIELD3

.

.

.

FIELD9

 

Where for each cell [FIELD(i), OK] I have the sum of the OKs in the column FIELD(i) and for each cell [FIELD(i), Alert] I have the sum of the Alerts in the column FIELD(i) ... obviously the sum of each row has to be equal to 10000.

If you have some ideas you are welcome, thx 🙂

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Transpose might help

| transpose
| eval TotalOK = 0
| eval TotalAlert = 0
| foreach "row*" [ eval TotalOK = TotalOK + if('<<FIELD>>'="OK",1,0) | eval TotalAlert = TotalAlert + if('<<FIELD>>'="Alert",1,0) ]
| fields column, TotalOK, TotalAlert

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Transpose might help

| transpose
| eval TotalOK = 0
| eval TotalAlert = 0
| foreach "row*" [ eval TotalOK = TotalOK + if('<<FIELD>>'="OK",1,0) | eval TotalAlert = TotalAlert + if('<<FIELD>>'="Alert",1,0) ]
| fields column, TotalOK, TotalAlert
0 Karma

Andr3A
Engager

It works perfectly, thx for the help!

 

ps just for Readers: you need to use the "| transpose 0" in order not to limit the number of rows transposed.

0 Karma
Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Dynamic formatting from XML events

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  &#x1f680; Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Stronger Security with Federated Search for S3, GCP SQL & Australian Threat ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...