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!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...