Splunk Search

Condensing multiple table rows into one row

willial
Communicator

I'm working with a database as my source (through DB Connect) and performing a bunch of different evals. When I go to output it looks like this:

**username      JanTotal   FebTotal   MarTotal**
user1            5
user1                         12
user1                                    8
user2            1
user2                         6
user2                                    3

And so on for multiple users. Try as I might, I can't get it to display simply as:

user1            5            12         8
user2            1             6         3

Is there an easy way to condense these rows into a single row by username? I'll even take a hard way.

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

You can try stats. something like this

your existing search (with output 1 above) | stats first(*) as * by username

View solution in original post

somesoni2
Revered Legend

You can try stats. something like this

your existing search (with output 1 above) | stats first(*) as * by username

willial
Communicator

Works perfectly! Thanks!

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Yup, stats first(*) as * by username is the way to go as long as each field only has up to one value per username.

Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...