Splunk Search

How to create a table for mount point space?

tmarlette
Motivator

I am attempting to build a search which shows the available space for the Unix mount that I desire. These are the standard 'OS' level mount points that I am targeting.

I am attempting to get the column headers to look like this:

host, /, /tmp, /usr/local, /boot
<myhost>,90%,75%,80%,50%

Currently the search i have working is the following:

index=my_index sourcetype=df mount="/" OR mount="/usr/local" OR mount="/opt/" OR mount="/var" OR mount="/tmp" OR mount="/boot" OR mount="/dev" | stats latest(PercentFreeSpace) as "space" by host,mount

This provides the column headers and result set to be as so:

host, mount, space
hostname, /, 70%
hostname,/tmp, 80%

I thought I could maybe use the 'xyseries' function to do this, or maybe the chart function, but I haven't been able to figure it out.

does anyone have any ideas on how to create this in a table?

Tags (3)
0 Karma
1 Solution

tmarlette
Motivator

I figured this one out. See below:

index=my_index sourcetype=df mount="/" OR mount="/usr/local" OR mount="/opt/" OR mount="/var" OR mount="/tmp" OR mount="/boot" OR mount="/dev" | chart latest(PercentFreeSpace) as "space" over host by mount

This is using the default data inputs / field extractions from the Linux TA and Unix app.

View solution in original post

tmarlette
Motivator

I figured this one out. See below:

index=my_index sourcetype=df mount="/" OR mount="/usr/local" OR mount="/opt/" OR mount="/var" OR mount="/tmp" OR mount="/boot" OR mount="/dev" | chart latest(PercentFreeSpace) as "space" over host by mount

This is using the default data inputs / field extractions from the Linux TA and Unix app.

Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...