#!/bin/sh
#
# $Id: df_inode.in 1415 2008-01-26 21:52:41Z matthias $
#
# Plugin to monitor inode-usage.
#
# Parameters understood:
#
# 	config   (required)
# 	autoconf (optional - used by munin-config)
#
# Magic markers (optional - used by munin-config and installation
# scripts):
#
#%# family=auto
#%# capabilities=autoconf

MAXLABEL=20

print_values() {
	mfs=0
	/bin/df -i -t noprocfs,devfs,fdescfs,linprocfs,nfs | tail +2 | grep -v "//" | while read i; do
		case $i in
		mfs:*) name=mfs$mfs; mfs=`expr $mfs + 1`;;
		*) name=`echo $i | awk '{ gsub("[^a-zA-Z0-9_]", "_", $1); print $1 }'` ;;
		esac
		echo -n "$name.value "
		echo $i | awk '{ print $8 }' | cut -f1 -d%
	done
}

if [ "$1" = "autoconf" ]; then
	if [ "`print_values`" = "" ] ; then
		echo no
	else
		echo yes
	fi
	exit 0
fi

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

	echo 'graph_title Inode usage (in %)'
	echo 'graph_args --upper-limit 100 -l 0'
	echo 'graph_vlabel %'
	echo 'graph_category disk'
	echo 'graph_scale no'
	echo 'graph_info This graph shows the inode usage for the partitions of types that use inodes.'
	/bin/df -i -t noprocfs,devfs,fdescfs,linprocfs,nfs | tail +2 | grep -v "//" | awk "
		BEGIN {
			mfs = 0
		}
		{
			name = \$1
			dir = \$9
			if (\$1 ~ /^mfs:/) {
				name = \"mfs\" mfs
				mfs = mfs + 1
			} else {
				gsub(/[^a-zA-Z0-9_]/, \"_\", name)
			}
			if (length(dir) <= $MAXLABEL)
				print name \".label \" dir
			else
				printf (\"%s.label ...%s\n\", name, substr (dir, length(dir)-$MAXLABEL+4, $MAXLABEL-3))
			print name \".info \" dir \" -> \" \$1
			print name \".warning 92\"
			print name \".critical 98\"
		}"
	exit 0
fi

print_values
