All Apps and Add-ons

Splunk App for Unix and Linux: How can I make my search representing memory usage per mount point into a gauge graph?

sushmitha_mj
Communicator

I am using the following search for representing usage per mount point. How do I make this a Gauge graph and have one per mount point?

host=$host$ sourcetype="df" earliest=-10m
 | multikv fields Used Avail MountedOn
 | dedup MountedOn
 | eval s = "Used,Available"
 | makemv delim="," allowempty=t s
 | mvexpand s
 | eval Size = if(s=="Used",Used,Avail)
 | convert memk(Size) as Size 
 | chart sum(Size) as "Size in Gb" by s

Also using the Splunk App for Unix and Linux what other interesting search searches could I write?

0 Karma

fdi01
Motivator

try like this :

 host=$host$ sourcetype="df" earliest=-10m
    | multikv fields Used Avail MountedOn
    | dedup MountedOn
    | eval s = "Used,Available"
    | makemv delim="," allowempty=t s
    | mvexpand s
    | eval Size = if(s=="Used",Used,Avail)
    | convert memk(Size) as Size
    | chart sum(Size) as "Size in Gb" by s|gauge  "Size in Gb" 50 100 125 150

this display the "Size in Gb" on a gauge with 4 regions, (0-50, 50-100, 100-125,125-150)

0 Karma

sushmitha_mj
Communicator

does not work....
It does not give me four different charts..

0 Karma

gyslainlatsa
Motivator

hi
I do not understand your problem but I think this link will help you

http://docs.splunk.com/Documentation/Splunk/6.2.2/SearchReference/Gauge

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