Splunk Search

How to remove fields from appearing in my timechart panel?

vijaykumartcs
Explorer

i'm trying to remove field from the timechart panel

eg: index=os host=xyz | timechart avg(usedMB) as DiskUsed avg(freeMB) as DiskFree avg(sizeMB) as DiskTotal by host |evalDiskUsed = round(DiskUsed/DiskTotal*100) | fields - DiskFree, DiskTotal

when i execute the above search, i see visualization DiskFree, DiskTotal too towards right end of the panel.. i want to see only DiskUsed..

How do i remove DiskFree, DiskTotal values..

help with the search..

0 Karma

woodcock
Esteemed Legend

Like this:

index=os host=xyz | timechart avg(eval(round(100*usedMB/sizeMB))) AS DiskUsed

Or maybe:

index=os host=xyz | timechart max(eval(round(100*usedMB/sizeMB))) AS DiskUsed
0 Karma
Get Updates on the Splunk Community!

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!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...