Splunk Search

How to sort data?

jaydiare
Explorer

Hello, I wonder if somebody can please help me to sort the following data:

jaydiare_0-1694807431957.png

Into this table:

jaydiare_1-1694807459588.png

Any ideas are welcome

I was trying to run this query but it is not separating the values of the fields properly:

index=query_mcc | eval data = split(_raw, ",") | eval Date = strftime(_time, "%Y-%m-%d-%H:%M:%S") | eval Category = mvindex(data, 1) | eval Status = mvindex(data, -1) | eval Command = mvindex(data, 0) | table host, Date, Category, Status, Command

 

but is giving me this , where it only shows the first line.. 

jaydiare_0-1694810092225.png

 

 

 

 

 

 

Labels (5)
0 Karma

PickleRick
SplunkTrust
SplunkTrust

Regardless of splitting the event, there is no "merged" cells in Splunk. So you can't visualize it this way.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
index=query_mcc 
| eval data=split(_raw,"
")
| mvexpand data
| eval data = split(data, ",")
| eval Date = strftime(_time, "%Y-%m-%d-%H:%M:%S") 
| eval Category = mvindex(data, 1) 
| eval Status = mvindex(data, -1) 
| eval Command = mvindex(data, 0) 
| table host, Date, Category, Status, Command
0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...