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

Comparing projects/cms/source/reports/rrdgraphing/graph.pl (file contents):
Revision 1.14 by tdb, Sun Aug 1 10:40:32 2004 UTC vs.
Revision 1.16 by tdb, Thu Mar 31 20:49:33 2005 UTC

# Line 35 | Line 35
35   #  -- allow configurable periods of graphs
36   #  -- comments, types, etc
37  
38 BEGIN {
39    push (@INC, "/usr/local/packages/rrdtool/lib/perl5/site_perl/5.8.2/sun4-solaris");
40 }
41
38   my($version) = '$Id$';
39  
40   $| = 1;
# Line 49 | Line 45 | use RRDs;
45  
46   # define variables that will be read from the config
47   # nb. keep this insync with the config file!
48 < use vars qw{
49 <    $imgdir $rrddir                    
48 > use vars qw{
49 >    $imgdir $rrddir
50      $maxrrdage $maximgage $deleterrds $deleteimgs
51 <    $hex_slash $hex_underscore  
51 >    $hex_slash $hex_underscore $hex_space $hex_colon $hex_bslash
52      $rrdstep $retry_wait
53      $verbose $quiet
54   };
# Line 143 | Line 139 | foreach my $machine (@rrddirlist) {
139              push @data, "STACK:$1:iowait:iowait#FF0000:OK:iowait cpu";
140              push @data, "STACK:$1:kernel:kernel#00FFFF:OK:kernel cpu";
141              push @data, "STACK:$1:user:user#0000FF:OK:user cpu  ";
142 <            #push @data, "STACK:$1:idle:idle#00FF00:OK:idle cpu  ";
142 >            push @data, "LINE2:$1:idle:idle#00FF00:OK:idle cpu  ";
143              push @rawdata, "--upper-limit=100";
144              &makegraph($machine, $1, "CPU Usage for $machine", "% cpu time", \@data, \@rawdata);
145          }
146 +        if($rrd =~ /^(uptime)\.rrd$/) {
147 +            my(@data);
148 +            push @data, "LINE2:$1:uptime:uptime#0000FF:OK:uptime";
149 +            &makegraph($machine, $1, "Uptime for $machine", "uptime in seconds", \@data);
150 +        }
151          if($rrd =~ /^(mem)\.rrd$/) {
152              my(@data);
153              my(@rawdata);
# Line 155 | Line 156 | foreach my $machine (@rrddirlist) {
156              push @data, "NONE:$1:free:free#CCCCFF:NONE:free memory";
157              push @data, "NONE:$1:total:total#0000FF:NONE:total memory\\n";
158              push @data, "NONE:$1:cache:cache#0000FF:NONE:cache memory\\n";
159 <            # calculate peruse - note that we only use 'free' if it's less than total
160 <            # (this is to avoid negative percentages :)
161 <            push @rawdata, "CDEF:peruse=total,free,total,LT,free,0,IF,-,total,/,100,*";
162 <            push @rawdata, "CDEF:percacuse=cache,total,LT,cache,0,IF,total,/,100,*";
159 >            # calculate peruse - note that we only use 'free' if it's
160 >            # less or equal to total (this is to avoid negative percentages :)
161 >            push @rawdata, "CDEF:peruse=total,free,total,LE,free,0,IF,-,total,/,100,*";
162 >            push @rawdata, "CDEF:percacuse=cache,total,LE,cache,0,IF,total,/,100,*";
163              # and add it to the graph
164              push @rawdata, "AREA:peruse#CCCCFF:% memory in use";
165              &addlegend(\@rawdata, "peruse");
# Line 183 | Line 184 | foreach my $machine (@rrddirlist) {
184              push @data, "STACK:$1:zombie:zombie#FF0000:OK:zombie processes  ";
185              push @data, "STACK:$1:cpu:cpu#00FF00:OK:cpu processes     ";
186              push @data, "STACK:$1:sleeping:sleeping#0000FF:OK:sleeping processes";
187 <            #push @data, "LINE2:$1:total:total#FF00FF:OK:total processes   ";
187 >            push @data, "LINE2:$1:total:total#FF00FF:OK:total processes   ";
188              &makegraph($machine, $1, "Processes on $machine", "no. of processes", \@data);
189          }
190          if($rrd =~ /^(swap)\.rrd$/) {
# Line 193 | Line 194 | foreach my $machine (@rrddirlist) {
194              # although we need it to work out peruse...
195              push @data, "NONE:$1:free:free#CCCCFF:NONE:free swap";
196              push @data, "NONE:$1:total:total#0000FF:NONE:total swap\\n";
197 <            # calculate peruse - note that we only use 'free' if it's less than total
198 <            # (this is to avoid negative percentages :)
199 <            push @rawdata, "CDEF:peruse=total,free,total,LT,free,0,IF,-,total,/,100,*";
197 >            # calculate peruse - note that we only use 'free' if it's
198 >            # less or equal to total (this is to avoid negative percentages :)
199 >            push @rawdata, "CDEF:peruse=total,free,total,LE,free,0,IF,-,total,/,100,*";
200              # and add it to the graph
201              push @rawdata, "AREA:peruse#CCCCFF:% swap in use";
202              push @rawdata, "--upper-limit=100";
# Line 245 | Line 246 | foreach my $machine (@rrddirlist) {
246              my($nicename) = $2;
247              $nicename =~ s/$hex_slash/\//g;
248              $nicename =~ s/$hex_underscore/_/g;
249 +            $nicename =~ s/$hex_bslash/\\/g;
250 +            $nicename =~ s/$hex_space/ /g;
251 +            $nicename =~ s/$hex_colon/:/g;
252              &makegraph($machine, "$type-$name", "Disk Usage for $machine on $nicename", "% usage", \@data, \@rawdata);
253          }
254          if($rrd =~ /^(diskio)-(\S+)\.rrd$/) {
# Line 253 | Line 257 | foreach my $machine (@rrddirlist) {
257              push @data, "AREA:$1-$2:rbytes:rbytes#00FF00:OK:read bytes ";
258              push @data, "LINE2:$1-$2:wbytes:wbytes#0000FF:OK:write bytes";
259              push @rawdata, "--base=1024";
260 <            &makegraph($machine, "$1-$2", "Disk IO for $machine on $2", "bytes per second", \@data, \@rawdata);
260 >            # some name tidting
261 >            my($type) = $1;
262 >            my($name) = $2;
263 >            my($nicename) = $2;
264 >            $nicename =~ s/$hex_slash/\//g;
265 >            $nicename =~ s/$hex_underscore/_/g;
266 >            $nicename =~ s/$hex_bslash/\\/g;
267 >            $nicename =~ s/$hex_space/ /g;
268 >            $nicename =~ s/$hex_colon/:/g;
269 >            &makegraph($machine, "$type-$name", "Disk IO for $machine on $nicename", "bytes per second", \@data, \@rawdata);
270          }
271          if($rrd =~ /^(net)-(\S+)\.rrd$/) {
272              my(@data);
# Line 261 | Line 274 | foreach my $machine (@rrddirlist) {
274              push @data, "AREA:$1-$2:rx:rx#00FF00:OK:received bytes  ";
275              push @data, "LINE2:$1-$2:tx:tx#0000FF:OK:transfered bytes";
276              push @rawdata, "--base=1024";
277 <            &makegraph($machine, "$1-$2", "Network IO for $machine on $2", "bytes per second", \@data, \@rawdata);
277 >            # some name tidting
278 >            my($type) = $1;
279 >            my($name) = $2;
280 >            my($nicename) = $2;
281 >            $nicename =~ s/$hex_slash/\//g;
282 >            $nicename =~ s/$hex_underscore/_/g;
283 >            $nicename =~ s/$hex_bslash/\\/g;
284 >            $nicename =~ s/$hex_space/ /g;
285 >            $nicename =~ s/$hex_colon/:/g;
286 >            &makegraph($machine, "$type-$name", "Network IO for $machine on $nicename", "bytes per second", \@data, \@rawdata);
287          }
288          if($rrd =~ /^(mailq)-(\S+)\.rrd$/) {
289              my(@data);
# Line 311 | Line 333 | if($deleteimgs) {
333      my(@imgdirlist) = sort grep { -d "$imgdir/$_" && !/^\.$/ && !/^\.\.$/ } readdir(DIR);
334      closedir DIR;
335  
336 <    # look through each directoty, as they might
336 >    # look through each directory, as they might
337      # contain images for a particular machine
338      foreach my $machine (@imgdirlist) {
339          # Read the contents of the directory

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines