ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/rrdgraphing/watch.pl
(Generate patch)

Comparing projects/cms/source/reports/rrdgraphing/watch.pl (file contents):
Revision 1.6 by tdb, Mon Mar 10 11:34:43 2003 UTC vs.
Revision 1.9 by tdb, Thu Feb 10 17:35:58 2005 UTC

# Line 2 | Line 2
2  
3   #
4   # i-scream central monitoring system
5 < # http://www.i-scream.org.uk
5 > # http://www.i-scream.org
6   # Copyright (C) 2000-2002 i-scream
7   #
8   # This program is free software; you can redistribute it and/or
# Line 22 | Line 22
22  
23   # -----------------------------------------------------------
24   # i-scream graph generation scripts
25 < # http://www.i-scream.org.uk
25 > # http://www.i-scream.org
26   #
27   # Generates rrd databases for i-scream data by connecting to
28   # the i-scream server and collecting data.
# Line 43 | Line 43 | use RRDs;
43  
44   # define variables that will be read from the config
45   # nb. keep this insync with the config file!
46 < use vars qw{
47 <    $imgdir $rrddir                    
46 > use vars qw{
47 >    $imgdir $rrddir
48      $maxrrdage $maximgage $deleterrds $deleteimgs
49 <    $hex_slash $hex_underscore  
49 >    $hex_slash $hex_underscore $hex_space $hex_colon $hex_bslash
50      $rrdstep $retry_wait
51      $verbose $quiet
52   };
# Line 256 | Line 256 | sub processdata() {
256                       );
257              &updaterrd($machine, "cpu", $date, $rrdstep, \%xmlhash, @data);
258                    
259 +            # uptime
260 +            @data = ( "packet.os.uptime:uptime:GAUGE" );
261 +            &updaterrd($machine, "uptime", $date, $rrdstep, \%xmlhash, @data);
262 +                  
263              # mem
264              @data = ( "packet.memory.free:free:GAUGE",
265                        "packet.memory.total:total:GAUGE",
266 +                      "packet.memory.cache:cache:GAUGE",
267                       );
268              &updaterrd($machine, "mem", $date, $rrdstep, \%xmlhash, @data);
269                      
# Line 301 | Line 306 | sub processdata() {
306                  my($mount) = $xmlhash{"packet.disk.p$i.attributes.mount"};
307                  $mount =~ s/_/$hex_underscore/g;
308                  $mount =~ s/\//$hex_slash/g;
309 +                $mount =~ s/\\/$hex_bslash/g;
310 +                $mount =~ s/ /$hex_space/g;
311 +                $mount =~ s/:/$hex_colon/g;
312                  @data = ( "packet.disk.p$i.attributes.total:total:GAUGE",
313                            "packet.disk.p$i.attributes.used:used:GAUGE",
314                            "packet.disk.p$i.attributes.totalinodes:totalinodes:GAUGE",
# Line 314 | Line 322 | sub processdata() {
322              $i = 0;
323              while(defined $xmlhash{"packet.diskio.p$i.attributes.name"}) {
324                  my($name) = $xmlhash{"packet.diskio.p$i.attributes.name"};
325 +                $name =~ s/_/$hex_underscore/g;
326 +                $name =~ s/\//$hex_slash/g;
327 +                $name =~ s/\\/$hex_bslash/g;
328 +                $name =~ s/ /$hex_space/g;
329 +                $name =~ s/:/$hex_colon/g;
330                  @data = ( "packet.diskio.p$i.attributes.rbytes:rbytes:GAUGE",
331                            "packet.diskio.p$i.attributes.wbytes:wbytes:GAUGE",
332                           );
# Line 325 | Line 338 | sub processdata() {
338              $i = 0;
339              while(defined $xmlhash{"packet.net.p$i.attributes.name"}) {
340                  my($name) = $xmlhash{"packet.net.p$i.attributes.name"};
341 +                $name =~ s/_/$hex_underscore/g;
342 +                $name =~ s/\//$hex_slash/g;
343 +                $name =~ s/\\/$hex_bslash/g;
344 +                $name =~ s/ /$hex_space/g;
345 +                $name =~ s/:/$hex_colon/g;
346                  @data = ( "packet.net.p$i.attributes.rx:rx:GAUGE",
347                            "packet.net.p$i.attributes.tx:tx:GAUGE",
348                           );
349 <                &updaterrd($machine, "net-$name", $date, $rrdstep, \%xmlhash,
350 < @data);
349 >                &updaterrd($machine, "net-$name", $date, $rrdstep, \%xmlhash, @data);
350 >                ++$i
351 >            }
352 >
353 >            # mailq
354 >            $i = 0;
355 >            while(defined $xmlhash{"packet.mailq.p$i.attributes.name"}) {
356 >                my($name) = $xmlhash{"packet.mailq.p$i.attributes.name"};
357 >                $name =~ s/\s+//g;
358 >                @data = ( "packet.mailq.p$i.attributes.size:size:GAUGE",
359 >                         );
360 >                &updaterrd($machine, "mailq-$name", $date, $rrdstep, \%xmlhash, @data);
361                  ++$i
362              }
363          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines