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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...