Splunk Search

How to view records/data horizontally by host?

hartcl1
Explorer

Hey is it possible to view data/records from a file horizontally by host.

For example, I have a search string like this:

search "event1234" | table host, value1,value2, value3

The result looks like this:

hostname1, value1
hostname1, value2
hostname1, value3

What I want to see is:

hostname, value1, value2, value3    

I want the records to be grouped by hostname and the data to grow horizontally for each hostname.

Is this possible?

C

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

You would be able to use commands like "chart" OR "xyseries" to do this transformation, but usage will depend on your data and required format. Please provide some sample data for better suggestions.

something like this

 "event1234" | table host, value | chart count over host by value

"event1234" | table host, value | eval temp=1| xyseries hostname value temp

View solution in original post

somesoni2
Revered Legend

You would be able to use commands like "chart" OR "xyseries" to do this transformation, but usage will depend on your data and required format. Please provide some sample data for better suggestions.

something like this

 "event1234" | table host, value | chart count over host by value

"event1234" | table host, value | eval temp=1| xyseries hostname value temp
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,  ...