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
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!

Index This | What travels the world but is also stuck in place?

April 2026 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Discover New Use Cases: Unlock Greater Value from Your Existing Splunk Data

Realizing the full potential of your Splunk investment requires more than just understanding current usage; it ...

Continue Your Journey: Join Session 2 of the Data Management and Federation Bootcamp ...

As data volumes continue to grow and environments become more distributed, managing and optimizing data ...