]> git.somenet.org - root/munin.git/blob - ircdlusers_
Updated ircd scripts to fix some channel naming fails.
[root/munin.git] / ircdlusers_
1 #!/bin/sh
2 #
3 # Copyright 2011-2016 by Jan Vales <jan@jvales.net> (Someone <someone@somenet.org>)
4 #
5 #    This program is free software: you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License as published by
7 #    the Free Software Foundation, version 3 of the License.
8 #
9 #    This program is distributed in the hope that it will be useful,
10 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #    GNU General Public License for more details.
13 #
14 #    You should have received a copy of the GNU General Public License
15 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #
17
18 IRCNET=${0##*ircdlusers_}
19
20 if [ "$1" = "autoconf" ]; then
21         echo "yes"
22         exit 0
23 fi
24
25 if [ "$1" = "config" ]; then
26     echo "graph_title ircnet ${IRCNET} usage stats"
27     echo "graph_info This graph shows the IRCd's stats"
28     echo "graph_category irc"
29     echo "graph_order clients channels servers"
30     echo "graph_printf %.0lf"
31     echo "graph_scale no"
32     echo "graph_args -l 0"
33     echo "channels.label channels"
34     echo "channels.draw LINE2"
35     echo "clients.label clients"
36     echo "clients.draw LINE2"
37     echo "servers.label servers"
38     echo "servers.draw LINE2"
39     exit 0
40 fi
41
42 grep 'channels formed' "/tmp/irc_${IRCNET}/lusers.txt" | sed -e 's/\(.*\) channels formed/channels.value \1/'
43 grep -i 'Current Global Users' "/tmp/irc_${IRCNET}/lusers.txt" | sed -Ee 's/^.*[Cc]urrent [Gg]lobal [Uu]sers:? ([0-9]+).*[Mm]ax.*$/clients.value \1/'
44 grep 'There are ' "/tmp/irc_${IRCNET}/lusers.txt" | sed -e 's/^.*on \(.*\) servers/servers.value \1/'
45
46 exit 0