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!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...