mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
Initial version
This commit is contained in:
parent
6dbfc42550
commit
81a80fba98
18
plugins/other/count-me
Executable file
18
plugins/other/count-me
Executable file
@ -0,0 +1,18 @@
|
||||
#!/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"
|
Loading…
Reference in New Issue
Block a user