Dashboards & Visualizations

Plotting % on yaxis

vikramnpanchal
Engager

Need to plot line chart below table "Max Busy Rate by processor" and want to show % values on yaxis and time on x-axis.

1 Date/Time Max Busy Rate Processor
2 10/29/2012 11:00 12% CHA-1H-3
3 10/29/2012 11:00 1% CHA-1H-2
4 10/29/2012 11:00 17% CHA-1H-1
5 10/29/2012 11:00 9% CHA-1H-0
6 10/29/2012 11:00 27% CHA-1H-3
7 10/29/2012 11:00 3% CHA-1H-2
8 10/29/2012 11:00 15% CHA-1H-1
9 10/29/2012 11:00 14% CHA-1H-0
10 10/29/2012 11:00 15% CHA-1H-3

Tags (1)
0 Karma
1 Solution

lguinn2
Legend

One of the tricks to charting is that Splunk requires one of the chart/timechart functions for the y-axis. In the example data above, you could use variety of different functions - I will use max

Second, you need to know the field names for your data. For this example, I will assume that Splunk has correctly identified the date/time of the event, and that you also have fields named busy and processor

yoursearchhere
| eval busy = tonumber(replace(busy,"%",""))
| timechart span=1h max(busy) by processor

View solution in original post

lguinn2
Legend

One of the tricks to charting is that Splunk requires one of the chart/timechart functions for the y-axis. In the example data above, you could use variety of different functions - I will use max

Second, you need to know the field names for your data. For this example, I will assume that Splunk has correctly identified the date/time of the event, and that you also have fields named busy and processor

yoursearchhere
| eval busy = tonumber(replace(busy,"%",""))
| timechart span=1h max(busy) by processor
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...