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
8f0e3e45f5
commit
deefb86c60
38
plugins/other/samba_users
Executable file
38
plugins/other/samba_users
Executable file
@ -0,0 +1,38 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Plugin to monitor the number of Samba users on the machine.
|
||||||
|
#
|
||||||
|
# Parameters:
|
||||||
|
#
|
||||||
|
# config (required)
|
||||||
|
# autoconf (optional - used by munin-config)
|
||||||
|
#
|
||||||
|
# $Log$
|
||||||
|
# Revision 1.0 2007/04/16 Jon Higgs
|
||||||
|
# Initial Release - Adapated from jimmyo's processses plugin.
|
||||||
|
#
|
||||||
|
# Magick markers (optional - used by munin-config and som installation
|
||||||
|
# scripts):
|
||||||
|
#%# family=auto
|
||||||
|
#%# capabilities=autoconf
|
||||||
|
|
||||||
|
if [ "$1" = "autoconf" ]; then
|
||||||
|
echo yes
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$1" = "config" ]; then
|
||||||
|
|
||||||
|
echo 'graph_title Samba Users'
|
||||||
|
echo 'graph_args --base 1000 -l 0 '
|
||||||
|
echo 'graph_vlabel number of Samba users.'
|
||||||
|
echo 'graph_category Samba'
|
||||||
|
echo 'graph_info This graph shows the number Samba users.'
|
||||||
|
echo 'samba_users.label Samba Users'
|
||||||
|
echo 'samba_users.draw LINE2'
|
||||||
|
echo 'samba_users.info The current number of Samba users.'
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -n "samba_users.value "
|
||||||
|
smbstatus -b 2> /dev/null | grep -c -v -e "^Samba" -e "^---" -e "^PID" -e ^$
|
Loading…
Reference in New Issue
Block a user