MINI SHELL

Server : Apache/2.2.2 (Fedora)
System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686
User : apache ( 48)
PHP Version : 5.2.9
Disable Function : NONE
Directory :  /usr/local/src/munin-1.2.6/node/node.d/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/local/src/munin-1.2.6/node/node.d/df.in
#!@@GOODSH@@
# -*- sh -*-
#
# $Id: df.in 1415 2008-01-26 21:52:41Z matthias $
#
# Script to monitor disk usage.
#
# Parameters understood:
#
# 	config   (required)
# 	autoconf (optional - used by munin-config)
#
# Environment:
#       warning  Warning percentage, default 92
#       critical Critical percentage, default 98
#
# Magic markers (optional - used by munin-config and installation
# scripts):
#
#%# family=auto
#%# capabilities=autoconf

MAXLABEL=20

if [ "$1" = "autoconf" ]; then
	if [ `uname -s` = SunOS ]; then
		echo no
		exit 1
	else
		echo yes
		exit 0
	fi
fi

if [ "$1" = "config" ]; then

	echo 'graph_title Filesystem usage (in %)'
	echo 'graph_args --upper-limit 100 -l 0'
	echo 'graph_vlabel %'
	df -P -l  | sed 1d | grep -v "//" | sort | while read i; do
		name=`echo $i | sed 's/[\/.-]/_/g'| awk '{ print $1 }'`
		printf "$name.label "
		echo $i | awk "{ 
			dir=\$6
			if (length(dir) <= $MAXLABEL)
				print dir
			else
				printf (\"...%s\n\", substr (dir, length(dir)-$MAXLABEL+4, $MAXLABEL-3)) 
		}"
	echo "$name.warning ${warning:-92}"
	echo "$name.critical ${critical:-98}"
	done
	exit 0
fi

df -P -l | sed 1d | grep -v "//" | while read i; do
	name=`echo $i | sed 's/[\/.-]/_/g'| awk '{ print $1 ".value " }'`
	printf "$name "
	echo $i | awk '{ print $5 }' | cut -f1 -d%
done

Anon7 - 2021