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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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