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!

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 ...