1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00
Munin-Contrib/plugins/network/count-me
2012-02-13 18:24:46 +01:00

18 lines
No EOL
327 B
Bash
Executable file

#!/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"