Splunk Search

Group results by rows and columns

kent_farries
Path Finder

I need some help grouping and transposing some data. The search below gives me the data but now I want to group it and transpose one of the fields with it's data.
....
| stats count by Stage, Model,Region
| table Region,Model,Stage,count
| sort Region,Model,Stage

Region | Model | Stage | count
East | Blue | Phase1 | 5
East | Blue | Phase2 | 3
East | Red | Phase1 | 2
East | Red | Phase2 | 7
West | Blue | Phase1 | 6
West | Blue | Phase2 | 9
West | Red | Phase1 | 7
West | Red | Phase2 | 8

I want it to look like
Region | Model | Phase1 | Phase2
East | Blue | 5 | 3
........| Red | 2 | 7
West | Blue | 6 |9
........ | Red | 7 | 8

Sorry for my table formatting as I was sure how to do it nicely.

Tags (1)
0 Karma
1 Solution

cmerriman
Super Champion

something like this should help if added to the end:

...|eval{Stage}='count'|fields - Stage count|stats values(*) as * by Region Model

View solution in original post

0 Karma

cmerriman
Super Champion

something like this should help if added to the end:

...|eval{Stage}='count'|fields - Stage count|stats values(*) as * by Region Model

0 Karma

kent_farries
Path Finder

Thank you, that did the trick and saved me a bunch of time. I will add this to my toolbox of SPL.

0 Karma

woodcock
Esteemed Legend

Just add this to the bottom:

| stats list(*) AS * BY Region
0 Karma

kent_farries
Path Finder

Thanks for the suggestion, while this produced the results it did not transpose the columns.

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...