2
0
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:
jon 2011-04-01 17:34:01 +02:00 committed by Steve Schnepp
parent e7dfd772a3
commit d27dd18580

24
plugins/other/windows_domain Executable file
View File

@ -0,0 +1,24 @@
#!/bin/sh
# munin plugin to monitor the number of logged in users
# and the number of hosts they're spread across on a windows domain.
# uses output dump of "net sess" from the domain controller.
# (c) 2011 jon@jon.bpa.nu
#%# family=manual
SESSIONS="/srv/pub/kram/dud"
case $1 in
config)
cat <<CFG
graph_title windows domain
graph_vlabel users/hosts
graph_category network
users.label users
hosts.label hosts
CFG
exit 0;;
esac
tail -n+5 "$SESSIONS" | head -n-2 | awk '$2 ~ "[a-z]+" { ua[tolower($2)]; ha[$1] }
END{ print "users.value",length(ua);
print "hosts.value",length(ha) }'