3 # Copyright 2011 by Jan Vales <jan@jvales.net> (Someone <someone@somenet.org>)
 
   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.
 
   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.
 
  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/>.
 
  18 IRCNET=${0##*ircdlusers_}
 
  20 if [ "$1" = "autoconf" ]; then
 
  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"
 
  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"
 
  42 cat "/tmp/irc_${IRCNET}/lusers.txt" | grep 'channels formed' | sed -e 's/\(.*\) channels formed/channels.value \1/'
 
  43 cat "/tmp/irc_${IRCNET}/lusers.txt" | grep -i 'Current Global Users' | sed -Ee 's/^.*[Cc]urrent [Gg]lobal [Uu]sers:? ([0-9]+).*[Mm]ax.*$/clients.value \1/'
 
  44 cat "/tmp/irc_${IRCNET}/lusers.txt" | grep 'There are ' | sed -e 's/^.*on \(.*\) servers/servers.value \1/'