Dashboards & Visualizations

How do I merge several events, transposing several fields?

atg2
Engager

I am creating a dashboard which contains a query that returns application health events of this type:

Server

Application

Type

Status

 

servername

appname

App Health

UP

 

servername

appname

Disk Health

UP

 

servername

appname

LDAP Health

UP

 

servername

appname

Redis Health

 DOWN

 

 

What I want instead is for the table to look like:

Server

Application

App Health

Disk Health

LDAP Health

Redis Health

servername

appname

UP

UP

UP

DOWN 

 

What would be the best way to accomplish this?

Thank you for any suggestions.

 

Labels (1)
Tags (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

You need to concatenate the server and application, the use xyseries, then split them again

| eval serverapp=server."|".application
| xyseries serverapp type status
| eval server=mvindex(split(serverapp,"|"),0)
| eval application=mvindex(split(serverapp,"|"),1)
| fields - serverapp

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

You need to concatenate the server and application, the use xyseries, then split them again

| eval serverapp=server."|".application
| xyseries serverapp type status
| eval server=mvindex(split(serverapp,"|"),0)
| eval application=mvindex(split(serverapp,"|"),1)
| fields - serverapp

atg2
Engager

Worked great. Thanks so much!

0 Karma
Get Updates on the Splunk Community!

Index This | Forward, I’m heavy; backward, I’m not. What am I?

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

A Guide To Cloud Migration Success

As enterprises’ rapid expansion to the cloud continues, IT leaders are continuously looking for ways to focus ...

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...