I have a time chart (line graph) showing memory usage. How do add the "%" to the range values of the y axis. In other words, I want my y-axis to look like this
100%
90%
80%
70%
etc.
I'm pretty sure you can't... however, you can set charting.axisTitleY.text
to inform viewers about the values being in percent.
I'm pretty sure you can't... however, you can set charting.axisTitleY.text
to inform viewers about the values being in percent.
Here is my search
index=os_windows host="usatlb91" counter="Available MBytes" | eval mBytes= (Value/1000) | eval mBytes_Percentage = (mBytes/16)*100 | timechart span=30m avg(mBytes_Percentage) as Trend by host useother=f usenull=f | eval Trend=round(Trend, 2)