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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...