Splunk Search

Manipulating a Table

KarunK
Contributor

Hi All,

I have a following table. Total is the sum of the cost of items by country using eventstats.

   Country      Items   cost    Total
    US      pen     3       6
    US      pencil  2       6
    US      paper   1       6
    UK      pen     6       12
    UK      pencil  3       12
    UK      paper   3       12
    HK      pen     4       7.5
    HK      pencil  2.5     7.5
    HK      paper   1       7.5

I need to modify the table to look like below.

Country Items   cost    Total
US  pen 3   6
    pencil  2   
    paper   1   
UK  pen 6   12
    pencil  3   
    paper   3   
HK  pen 4   7.5
    pencil  2.5 
    paper   1   

I have played around with stats values function but of no use. Any ideas ???

Thanks in Advance.

KK

Tags (1)
0 Karma
1 Solution

MuS
SplunkTrust
SplunkTrust

Hi KarunK,

take this run everywhere example and adapt it to your needs:

index=_internal sourcetype=splunkd 
| eventstats count AS myCount by series 
| stats list(series) AS series list(myCount) AS count sum(myCount) AS total by sourcetype

This will return something similar to your target.

hope this helps...

cheers, MuS

View solution in original post

MuS
SplunkTrust
SplunkTrust

Hi KarunK,

take this run everywhere example and adapt it to your needs:

index=_internal sourcetype=splunkd 
| eventstats count AS myCount by series 
| stats list(series) AS series list(myCount) AS count sum(myCount) AS total by sourcetype

This will return something similar to your target.

hope this helps...

cheers, MuS

MuS
SplunkTrust
SplunkTrust

Use list instead of values in that case 😉

0 Karma

KarunK
Contributor

Great !!! Issue resolved....
Thanks Mate ...

0 Karma

MuS
SplunkTrust
SplunkTrust

please mark this as answered, thx

0 Karma

KarunK
Contributor

Values wont work as it show only the unique value. I want to show all values.

Thanks for your thoughts !!!

KKN

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!

Automating Threat Operations and Threat Hunting with Recorded Future

    Automating Threat Operations and Threat Hunting with Recorded Future June 29, 2026 | Register   Is your ...

Keep the Learning Going with the New Best of .conf Hub

Hello Splunkers, With .conf26 getting closer, there’s already a lot of excitement building around this year’s ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...