#!/bin/sh
# 
# Plugin to monitor the number of interrupts and context switches on a system. 
#
# Idea and base from Ragnar Wislff.
#
# Usage: Link or copy into /etc/munin/node.d/
#
# $Log: interrupts.in,v $
# Revision 1.1  2004/01/02 18:50:01  jimmyo
# Renamed occurrances of lrrd -> munin
#
# Revision 1.1.1.1  2004/01/02 15:18:07  jimmyo
# Import of LRRD CVS tree after renaming to Munin
#
# Revision 1.3  2003/12/06 16:24:34  jimmyo
# Plugin interrupts: context switch graphing added by Mike Fedyk
#
# Revision 1.2  2003/11/07 17:43:16  jimmyo
# Cleanups and log entries
#
#
# Magic markers (optional - only used by munin-config and some
# installation scripts):
#
#%# family=auto
#%# capabilities=autoconf

if [ "$1" = "autoconf" ]; then
	if [ -r /proc/stat ]; then
		echo yes
		exit 0
	else
		echo no
		exit 1
	fi
fi

# If run with the "config"-parameter, give out information on how the
# graphs should look. 
 
if [ "$1" = "config" ]; then
	# The title of the graph
	echo 'graph_title Interrupts & context switches'
	# Arguments to "rrdtool graph". In this case, tell it that the
	# lower limit of the graph is '0', and that 1k=1000 (not 1024)
	echo 'graph_args --base 1000 -l 0'
	# The Y-axis label
	echo 'graph_vlabel interrupts & ctx switches / second'
	# The fields. "label" is used in the legend. "label" is the only
	# required subfield. 
	echo 'intr.label interrupts'
	echo 'ctx.label context switches'
	# Specify type
	echo 'intr.type COUNTER'
	echo 'ctx.type COUNTER'
	# Set max (should always be done with counters) Note: this is max
	# per second.
	echo 'intr.max 100000'
	echo 'ctx.max 100000'

	# Last, if run with the "config"-parameter, quit here (don't
	# display any data)
	exit 0
fi

# The real work

sed 's/intr/intr.value/;s/ctxt/ctx.value/' < /proc/stat \
  | egrep 'intr|ctx' \
  | awk '{ print $1" "$2 }'

