Splunk Dev

How to put multiple rows in a table in single row by parsing some criteria?

krishman23
Explorer

I have a search query that gives me data as

--------------------------------------------------
|         {applicationid: app_1                 |
|         data_type: data_A                     |
|         message: message_123                  |
|         }                                     |
---------------------------------------------------
|        {applicationid: app_2                  |
|        data_type: data_A                      |
|       message: message_456                    |
|          }                                    |
-------------------------------------------------
but I need to put this in splunk dash board as
-----------------------------------------------------
|data_type| Applicationid=app_1| Applicationid=app_2|
-----------------------------------------------------
|data_A   | message_123        | message_456        |
|...      |  ...               | ....               |
---------------------------------------------------
Tags (1)
0 Karma
1 Solution

p_gurav
Champion

Hi ,

try something like this:

 | extract pairdelim="\r\n" kvdelim=":" | chart values(message) over data_type by applicationid

View solution in original post

0 Karma

p_gurav
Champion

Hi ,

try something like this:

 | extract pairdelim="\r\n" kvdelim=":" | chart values(message) over data_type by applicationid
0 Karma

krishman23
Explorer

Seems it works Thanks

0 Karma

krishman23
Explorer

In event

0 Karma

p_gurav
Champion

The data you are getting from search query giving result in table format or that is single event in example?

0 Karma

krishman23
Explorer

I’m getting In event

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