Dashboards & Visualizations

Converting MB to GB

kesrich
Explorer

Hi, I am very new to Splunk reporting and I am trying to change a timechart I have to show in GB since we are using a 4TB disk share. Below is my search query. It comes up OK, but just trying to make it more friendly.

index=perfmon host=ServerName eventtype=perfmon_windows NetShare14| timechart span=24h avg(Free_Megabytes) as MB_Free

Thanks

Kesrich

Labels (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Use eval to convert the values.

index=perfmon host=ServerName eventtype=perfmon_windows NetShare14
| eval GB_Free = Free_Megabytes/1024
| timechart span=24h avg(GB_Free) as GB_Free
---
If this reply helps you, Karma would be appreciated.

View solution in original post

kesrich
Explorer

Thanks everyone for the suggestions. I wasn't familiar with "eval". That helped.

 

0 Karma

niketn
Legend

Actually reverse perform timechart to get daily data hoping even if you are querying 1 year of data it will be 365 rows. Then apply eval

index=perfmon host=ServerName eventtype=perfmon_windows NetShare14
| timechart span=24h avg(Free_Megabytes) as GB_Free
| eval GB_Free=round(GB_Free,2)

Read more about eval command in Splunk Documentation: https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Eval 

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

MattibergB
Path Finder

You could try to use the following before your timechart: | eval GB_Free=(Free_Megabytes/1024).

Then change your timechart to the following:

| timechart span=24h avg(GB_Free) as GB_Free

richgalloway
SplunkTrust
SplunkTrust

Use eval to convert the values.

index=perfmon host=ServerName eventtype=perfmon_windows NetShare14
| eval GB_Free = Free_Megabytes/1024
| timechart span=24h avg(GB_Free) as GB_Free
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

What are Community Office Hours?Community Office Hours is an interactive 60-minute Zoom series where ...

It’s go time — Boston, here we come!

Are you ready to take your Splunk skills to the next level? Get set, because Splunk University is back, and ...

Performance Tuning the Platform, SPL2 Templates, and More New Articles on Splunk ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...