Splunk Search

How to change table column headings?

ny34940
Path Finder

The search command that I have used is:
| chart list(field1) as A list(field2) as B by name month

The result I am getting is something like this
Name A : JAN A : FEB A : MAR B : JAN B : FEB B : MAR
abc

xyz

Desired result:

NAME JAN : A JAN : B FEB : A FEB : B MAR : A MAR : B
abc

xyz

I know the reason why I am getting the result but is there any way to change the names like the desired one?
Thanks in advance.

0 Karma
1 Solution

mayurr98
Super Champion

hey try this

<your_base_query> | chart list(field1) as A list(field2) as B over name by month | rename A:* as *:A B:* as *:B 

let me know if this helps!

View solution in original post

mayurr98
Super Champion

hey try this

<your_base_query> | chart list(field1) as A list(field2) as B over name by month | rename A:* as *:A B:* as *:B 

let me know if this helps!

ny34940
Path Finder

Thank you,it worked.

0 Karma

andrey2007
Contributor

Try to use rename

[your_search] | rename "A:*" as "*:A", "B:*" as "*:B"

ny34940
Path Finder

Thanks for the answer

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...