Monitoring Splunk

CPU Pie Chart

jlaigo2
Path Finder

Have been trying to get a pie chart that reps the cpu usage. IE the following log format.
Any one have a clue if I can create a pie chart with a multikv fields?

CPU LOAD USER NICE SYS IDLE BLOCK SWAIT INTR SSYS
avg 0.74 8.0% 2.8% 11.8% 77.4% 0.0% 0.0% 0.0% 0.0%

Tags (1)
1 Solution

Ayn
Legend

Assuming you have the fields extracted, you can use transpose to get a chart formatted in a way that can be used for a pie chart. Since a pie chart doesn't deal with time-series data, it will use only the first row of the table it's supplied with. It's cleaner to add | head 1 to the search to show explicitly what data is used for the pie chart though.

<yourbasesearch> | head 1 | table USER NICE SYS IDLE BLOCK SWAIT INTR SSYS | transpose

View solution in original post

jlaigo2
Path Finder

Works perfect thanks for the help:)

0 Karma

Ayn
Legend

Assuming you have the fields extracted, you can use transpose to get a chart formatted in a way that can be used for a pie chart. Since a pie chart doesn't deal with time-series data, it will use only the first row of the table it's supplied with. It's cleaner to add | head 1 to the search to show explicitly what data is used for the pie chart though.

<yourbasesearch> | head 1 | table USER NICE SYS IDLE BLOCK SWAIT INTR SSYS | transpose
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 ...