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
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...

Network to App: Observability Unlocked [May & June Series]

In today’s digital landscape, your environment is no longer confined to the data center. It spans complex ...

SPL2 Deep Dives, AppDynamics Integrations, SAML Made Simple and Much More on Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...