Repository
Munin (contrib)
Last change
2012-02-13
Graph Categories
Family
manual
Keywords
Language
Shell

count-me

Sadly there is no documentation for this plugin.

#!/bin/sh
# munin plugin that return 1. It is used for counting total server within a group
#
# (c) 2011 josecelano@gmail.com
#%# family=manual

case $1 in
        config)
        cat <<CFG
graph_title Count me
graph_vlabel Count me
graph_category network
servers.label servers
CFG
        exit 0;;
esac

echo "servers.value 1"