1 |
|
#!/usr/bin/perl -w |
2 |
|
|
3 |
+ |
# |
4 |
+ |
# i-scream central monitoring system |
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 |
9 |
+ |
# modify it under the terms of the GNU General Public License |
10 |
+ |
# as published by the Free Software Foundation; either version 2 |
11 |
+ |
# of the License, or (at your option) any later version. |
12 |
+ |
# |
13 |
+ |
# This program is distributed in the hope that it will be useful, |
14 |
+ |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 |
+ |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 |
+ |
# GNU General Public License for more details. |
17 |
+ |
# |
18 |
+ |
# You should have received a copy of the GNU General Public License |
19 |
+ |
# along with this program; if not, write to the Free Software |
20 |
+ |
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21 |
+ |
# |
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. |
31 |
|
# $Id$ |
32 |
|
#------------------------------------------------------------ |
33 |
|
|
34 |
< |
## TODO |
15 |
< |
# ought to think about cleaning up when we restart? |
16 |
< |
# -- old queue data etc |
34 |
> |
my($version) = '$Id$'; |
35 |
|
|
36 |
|
$| = 1; |
37 |
|
|
38 |
|
use strict; |
39 |
< |
use iscream::XMLParser; |
39 |
> |
use Getopt::Std; |
40 |
|
use IO::Socket; |
41 |
+ |
use iscream::XMLParser; |
42 |
|
use RRDs; |
43 |
|
|
44 |
< |
# Base directory for images |
45 |
< |
# (a directory will be constructed for each host under this) |
46 |
< |
my($imgdir) = "/home/pkg/iscream/public_html/graphs"; |
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 |
48 |
> |
$maxrrdage $maximgage $deleterrds $deleteimgs |
49 |
> |
$hex_slash $hex_underscore $hex_space $hex_colon $hex_bslash $hex_rbracket |
50 |
> |
$hex_lbracket $hex_plus |
51 |
> |
$rrdstep $retry_wait |
52 |
> |
$verbose $quiet |
53 |
> |
}; |
54 |
|
|
55 |
< |
# Location of RRD databases |
56 |
< |
my($rrddir) = "/u1/i-scream/databases"; |
55 |
> |
# default locate of the config file |
56 |
> |
my($configfile) = "rrdgraphing.conf"; |
57 |
|
|
58 |
< |
# for reference: |
59 |
< |
# ch -> hex: $hex = sprintf("%02x", ord($ch)); |
60 |
< |
# hex -> ch: $ch = chr(hex($hex)); |
58 |
> |
# check for command line arguments |
59 |
> |
my(%opts); |
60 |
> |
my($ret) = getopts('hvqVc:', \%opts); |
61 |
|
|
62 |
< |
# / converted to a decimal then hex'd |
63 |
< |
my($hex_slash) = "_2f"; |
38 |
< |
# _ converted to a decimal then hex'd |
39 |
< |
my($hex_underscore) = "_5f"; |
62 |
> |
# if invalid argument given, $ret will not be 1 |
63 |
> |
&usage() if $ret != 1; |
64 |
|
|
65 |
< |
# step interval in the rrd databases |
42 |
< |
my($rrdstep) = 15; |
65 |
> |
# first process the arguments which might mean we exit now |
66 |
|
|
67 |
< |
# time to wait (in seconds) before retrying a connection |
68 |
< |
my($retry_wait) = 10; |
67 |
> |
# -h is usage |
68 |
> |
if($opts{h}) { |
69 |
> |
&usage(); |
70 |
> |
} |
71 |
> |
# -V is version |
72 |
> |
if($opts{V}) { |
73 |
> |
print "watch.pl version: $version\n"; |
74 |
> |
exit(1); |
75 |
> |
} |
76 |
|
|
77 |
+ |
# Then try getting the config |
78 |
+ |
|
79 |
+ |
# -c specifies the config file location |
80 |
+ |
if($opts{c}) { |
81 |
+ |
$configfile = $opts{c}; |
82 |
+ |
} |
83 |
+ |
# suck in the config |
84 |
+ |
&log("reading config from $configfile\n"); |
85 |
+ |
do $configfile; |
86 |
+ |
|
87 |
+ |
# Then any options we might want to override the config with |
88 |
+ |
|
89 |
+ |
# -v is verbose |
90 |
+ |
if($opts{v}) { |
91 |
+ |
$verbose = $opts{v}; |
92 |
+ |
} |
93 |
+ |
# -q is verbose |
94 |
+ |
if($opts{q}) { |
95 |
+ |
$quiet = $opts{q}; |
96 |
+ |
# if we're meant to be quiet, we can hardly be verbose! |
97 |
+ |
# $verbose = 0; |
98 |
+ |
} |
99 |
+ |
|
100 |
+ |
# Finally check for required arguments |
101 |
+ |
|
102 |
+ |
# check we still have two arguments left |
103 |
|
if (@ARGV != 2) { |
104 |
< |
die "Usage: watch.pl [i-scream client interface] [TCP port]\n"; |
104 |
> |
&usage(); |
105 |
|
} |
106 |
|
|
107 |
|
# user supplied client interface server and port |
108 |
|
my($addr) = $ARGV[0]; |
109 |
|
my($cport) = $ARGV[1]; |
110 |
|
|
111 |
+ |
|
112 |
+ |
# Main program loop |
113 |
|
while(1) { |
114 |
|
|
115 |
< |
print "Connecting control channel to port $cport on $addr...\n"; |
115 |
> |
&log("Connecting control channel to port $cport on $addr...\n"); |
116 |
|
|
117 |
|
# attempt to connect the control channel |
118 |
|
my($csock) = new IO::Socket::INET( |
123 |
|
|
124 |
|
# if socket isn't defined connection failed |
125 |
|
if (!defined $csock) { |
126 |
< |
print STDERR "ERROR: Could not connect control channel to $addr:$cport.\n"; |
127 |
< |
print STDERR "Please check that there is an i-scream server at this address.\n"; |
126 |
> |
&error("ERROR: Could not connect control channel to $addr:$cport.\n"); |
127 |
> |
&error("Please check that there is an i-scream server at this address.\n"); |
128 |
|
&wait_then_retry(); |
129 |
|
next; |
130 |
|
} |
134 |
|
# client interface should send it's protocol ID |
135 |
|
# we know about "PROTOCOL 1.1", and will only accept the same |
136 |
|
$response = <$csock>; |
137 |
+ |
&log("CLI sent: $response"); |
138 |
|
if ($response && $response ne "PROTOCOL 1.1\n") { |
139 |
< |
print STDERR "The i-scream server sent an unexpected protocol ID: $response\n"; |
139 |
> |
&error("The i-scream server sent an unexpected protocol ID: $response\n"); |
140 |
|
close($csock); |
141 |
|
&wait_then_retry(); |
142 |
|
next; |
144 |
|
|
145 |
|
# send our identifier to the client interface |
146 |
|
print $csock "rrdgraphing\n"; |
147 |
+ |
&log("we sent: rrdgraphing\n"); |
148 |
|
$response = <$csock>; |
149 |
+ |
&log("CLI sent: $response"); |
150 |
|
if ($response && $response ne "OK\n") { |
151 |
< |
print STDERR "Received unexpected response: $response\n"; |
151 |
> |
&error("Received unexpected response: $response\n"); |
152 |
|
close($csock); |
153 |
|
&wait_then_retry(); |
154 |
|
next; |
156 |
|
|
157 |
|
# tell the client interface we'd like to start the data channel |
158 |
|
print $csock "STARTDATA\n"; |
159 |
< |
|
159 |
> |
&log("we sent: STARTDATA\n"); |
160 |
> |
|
161 |
|
# the response should be the socket to connect the data channel to |
162 |
|
$response = <$csock>; |
163 |
+ |
&log("CLI sent: $response"); |
164 |
|
chomp $response; |
165 |
|
|
166 |
|
my($dport) = $response; |
167 |
< |
print "Connecting data channel to port $dport on $addr...\n"; |
167 |
> |
&log("Connecting data channel to port $dport on $addr...\n"); |
168 |
|
|
169 |
|
# attempt to connect the data channel |
170 |
|
my($dsock) = new IO::Socket::INET( |
175 |
|
|
176 |
|
# if socket isn't defined connection failed |
177 |
|
if (!defined $dsock) { |
178 |
< |
print STDERR "ERROR: Could not connect data channel to $addr:$dport.\n"; |
179 |
< |
print STDERR "Failure in communications.\n"; |
178 |
> |
&error("ERROR: Could not connect data channel to $addr:$dport.\n"); |
179 |
> |
&error("Failure in communications.\n"); |
180 |
|
close($csock); |
181 |
|
&wait_then_retry(); |
182 |
|
next; |
203 |
|
# wait for a while before retrying |
204 |
|
# |
205 |
|
sub wait_then_retry() { |
206 |
< |
print STDERR "Will retry connection to i-scream server in $retry_wait seconds.\n\n"; |
206 |
> |
&error("Will retry connection to i-scream server in $retry_wait seconds.\n\n"); |
207 |
|
sleep $retry_wait; |
208 |
|
} |
209 |
|
|
230 |
|
# attempt to parse the data |
231 |
|
my($err, %xmlhash) = &iscream::XMLParser::parse($xml); |
232 |
|
if($err) { |
233 |
< |
print STDERR "Skipped, XML did not parse: $xml"; |
233 |
> |
&error("Skipped, XML did not parse: $xml"); |
234 |
|
next; |
235 |
|
} |
236 |
|
|
243 |
|
if(! -d "$rrddir/$machine") { |
244 |
|
# not sure on this umask, but it seems to work? |
245 |
|
mkdir "$rrddir/$machine", 0777; |
246 |
+ |
&log("created directory $rrddir/$machine\n"); |
247 |
|
} |
248 |
|
|
249 |
|
my(@data); |
257 |
|
); |
258 |
|
&updaterrd($machine, "cpu", $date, $rrdstep, \%xmlhash, @data); |
259 |
|
|
260 |
+ |
# uptime |
261 |
+ |
@data = ( "packet.os.uptime:uptime:GAUGE" ); |
262 |
+ |
&updaterrd($machine, "uptime", $date, $rrdstep, \%xmlhash, @data); |
263 |
+ |
|
264 |
|
# mem |
265 |
|
@data = ( "packet.memory.free:free:GAUGE", |
266 |
|
"packet.memory.total:total:GAUGE", |
267 |
+ |
"packet.memory.cache:cache:GAUGE", |
268 |
|
); |
269 |
|
&updaterrd($machine, "mem", $date, $rrdstep, \%xmlhash, @data); |
270 |
|
|
294 |
|
@data = ( "packet.users.count:count:GAUGE", |
295 |
|
); |
296 |
|
&updaterrd($machine, "users", $date, $rrdstep, \%xmlhash, @data); |
297 |
< |
|
297 |
> |
|
298 |
> |
# paging |
299 |
> |
@data = ( "packet.pages.pageins:pageins:GAUGE", |
300 |
> |
"packet.pages.pageouts:pageouts:GAUGE", |
301 |
> |
); |
302 |
> |
&updaterrd($machine, "paging", $date, $rrdstep, \%xmlhash, @data); |
303 |
> |
|
304 |
|
# disk |
305 |
|
my($i) = 0; |
306 |
|
while(defined $xmlhash{"packet.disk.p$i.attributes.mount"}) { |
307 |
|
my($mount) = $xmlhash{"packet.disk.p$i.attributes.mount"}; |
308 |
|
$mount =~ s/_/$hex_underscore/g; |
309 |
|
$mount =~ s/\//$hex_slash/g; |
310 |
< |
@data = ( "packet.disk.p$i.attributes.kbytes:kbytes:GAUGE", |
310 |
> |
$mount =~ s/\\/$hex_bslash/g; |
311 |
> |
$mount =~ s/ /$hex_space/g; |
312 |
> |
$mount =~ s/:/$hex_colon/g; |
313 |
> |
@data = ( "packet.disk.p$i.attributes.total:total:GAUGE", |
314 |
|
"packet.disk.p$i.attributes.used:used:GAUGE", |
315 |
+ |
"packet.disk.p$i.attributes.totalinodes:totalinodes:GAUGE", |
316 |
+ |
"packet.disk.p$i.attributes.freeinodes:freeinodes:GAUGE", |
317 |
|
); |
318 |
|
&updaterrd($machine, "disk-$mount", $date, $rrdstep, \%xmlhash, @data); |
319 |
|
++$i; |
320 |
|
} |
321 |
+ |
|
322 |
+ |
# diskio |
323 |
+ |
$i = 0; |
324 |
+ |
while(defined $xmlhash{"packet.diskio.p$i.attributes.name"}) { |
325 |
+ |
my($name) = $xmlhash{"packet.diskio.p$i.attributes.name"}; |
326 |
+ |
$name =~ s/_/$hex_underscore/g; |
327 |
+ |
$name =~ s/\//$hex_slash/g; |
328 |
+ |
$name =~ s/\\/$hex_bslash/g; |
329 |
+ |
$name =~ s/ /$hex_space/g; |
330 |
+ |
$name =~ s/:/$hex_colon/g; |
331 |
+ |
@data = ( "packet.diskio.p$i.attributes.rbytes:rbytes:GAUGE", |
332 |
+ |
"packet.diskio.p$i.attributes.wbytes:wbytes:GAUGE", |
333 |
+ |
); |
334 |
+ |
&updaterrd($machine, "diskio-$name", $date, $rrdstep, \%xmlhash, @data); |
335 |
+ |
++$i |
336 |
+ |
} |
337 |
+ |
|
338 |
+ |
# net |
339 |
+ |
$i = 0; |
340 |
+ |
while(defined $xmlhash{"packet.net.p$i.attributes.name"}) { |
341 |
+ |
my($name) = $xmlhash{"packet.net.p$i.attributes.name"}; |
342 |
+ |
$name =~ s/_/$hex_underscore/g; |
343 |
+ |
$name =~ s/\//$hex_slash/g; |
344 |
+ |
$name =~ s/\\/$hex_bslash/g; |
345 |
+ |
$name =~ s/ /$hex_space/g; |
346 |
+ |
$name =~ s/:/$hex_colon/g; |
347 |
+ |
$name =~ s/\(/$hex_rbracket/g; |
348 |
+ |
$name =~ s/\)/$hex_lbracket/g; |
349 |
+ |
$name =~ s/\+/$hex_plus/g; |
350 |
+ |
@data = ( "packet.net.p$i.attributes.rx:rx:GAUGE", |
351 |
+ |
"packet.net.p$i.attributes.tx:tx:GAUGE", |
352 |
+ |
); |
353 |
+ |
&updaterrd($machine, "net-$name", $date, $rrdstep, \%xmlhash, @data); |
354 |
+ |
++$i |
355 |
+ |
} |
356 |
+ |
|
357 |
+ |
# mailq |
358 |
+ |
$i = 0; |
359 |
+ |
while(defined $xmlhash{"packet.mailq.p$i.attributes.name"}) { |
360 |
+ |
my($name) = $xmlhash{"packet.mailq.p$i.attributes.name"}; |
361 |
+ |
$name =~ s/\s+//g; |
362 |
+ |
@data = ( "packet.mailq.p$i.attributes.size:size:GAUGE", |
363 |
+ |
); |
364 |
+ |
&updaterrd($machine, "mailq-$name", $date, $rrdstep, \%xmlhash, @data); |
365 |
+ |
++$i |
366 |
+ |
} |
367 |
|
} |
368 |
|
|
369 |
|
# queue statistics packet |
374 |
|
if(! -d "$rrddir/$machine") { |
375 |
|
# not sure on this umask, but it seems to work? |
376 |
|
mkdir "$rrddir/$machine", 0777; |
377 |
+ |
&log("created directory $rrddir/$machine\n"); |
378 |
|
} |
379 |
|
my($hash) = $xmlhash{"packet.attributes.hashCode"}; |
380 |
|
my($date) = $xmlhash{"packet.attributes.date"}; |
382 |
|
# take a look to see if we have a shutdown packet... |
383 |
|
if($xmlhash{"packet.attributes.shutdown"} && $xmlhash{"packet.attributes.shutdown"} eq "true") { |
384 |
|
unlink <$rrddir/$machine/$hash\_*.rrd>, "$rrddir/$machine/$hash.def", <$imgdir/$machine/$hash*.png>; |
385 |
+ |
&log("deleted $rrddir/$machine/$hash\_*.rrd $rrddir/$machine/$hash.def $imgdir/$machine/$hash*.png\n"); |
386 |
|
next; |
387 |
|
} |
388 |
|
# look through to see how many internal queues we have |
392 |
|
if($xmlhash{"packet.queue.attributes.queue$i"} eq "[deleted]") { |
393 |
|
# delete the queues rrd |
394 |
|
unlink "$rrddir/$machine/$hash\_$i.rrd"; |
395 |
+ |
&log("deleted $rrddir/$machine/$hash\_$i.rrd\n"); |
396 |
|
# are there any other rrd's left on this queue? if not, cleanup. |
397 |
|
# get a list of any that may be still there.. |
398 |
|
opendir(DIR, "$rrddir/$machine"); |
403 |
|
if($rrdcount == 0) { |
404 |
|
# clean up the def file and any images |
405 |
|
unlink "$rrddir/$machine/$hash.def", <$imgdir/$machine/$hash*.png>; |
406 |
+ |
&log("deleted $rrddir/$machine/$hash.def $imgdir/$machine/$hash*.png\n"); |
407 |
|
} |
408 |
|
++$i; |
409 |
|
next; |
414 |
|
open(DEF, ">$rrddir/$machine/$hash.def"); |
415 |
|
print DEF $name; |
416 |
|
close DEF; |
417 |
+ |
&log("created $rrddir/$machine/$hash.def\n"); |
418 |
|
} |
419 |
|
my(@data) = ( "packet.queue.attributes.queue$i:size:GAUGE", |
420 |
|
"packet.queue.attributes.total:total:COUNTER", |
424 |
|
} |
425 |
|
} |
426 |
|
else { |
427 |
< |
#print STDERR "SKIPPED: valid xml, but not a data or statistics packet\n"; |
427 |
> |
#&error("SKIPPED: valid xml, but not a data or statistics packet\n"); |
428 |
|
} |
429 |
|
} |
430 |
|
|
431 |
|
# we'll now return from this sub and reconnect |
432 |
< |
print STDERR "Data channel socket gave no data, bailing out...\n"; |
432 |
> |
&error("Data channel socket gave no data, bailing out...\n"); |
433 |
|
} |
434 |
|
|
435 |
|
# |
461 |
|
} |
462 |
|
} |
463 |
|
# call the &makerrd to actually create the rrd |
464 |
< |
print "making new rrd for $rrddir/$machine/$type.rrd\n"; |
464 |
> |
&log("making new rrd for $rrddir/$machine/$type.rrd\n"); |
465 |
|
&makerrd($machine, $type, $date, $step, @createdata); |
466 |
|
} |
467 |
|
# get the details out of the data we've been given |
478 |
|
} |
479 |
|
# perform the update |
480 |
|
RRDs::update ("$rrddir/$machine/$type.rrd", $updateparams); |
481 |
+ |
&log("updating $rrddir/$machine/$type.rrd\n"); |
482 |
|
my($err) = RRDs::error; |
483 |
< |
print STDERR "Error updating $rrddir/$machine/$type.rrd: $err\n" if $err; |
483 |
> |
&error("Error updating $rrddir/$machine/$type.rrd: $err\n") if $err; |
484 |
|
} |
485 |
|
|
486 |
|
# |
503 |
|
if(! -d "$rrddir/$machine") { |
504 |
|
# not sure on this umask, but it seems to work? |
505 |
|
mkdir "$rrddir/$machine", 0777; |
506 |
+ |
&log("created directory $rrddir/$machine\n"); |
507 |
|
} |
508 |
|
my(@rrdcmd); |
509 |
|
# we'll want to add our first data item at $start, |
537 |
|
); |
538 |
|
RRDs::create (@rrdcmd); |
539 |
|
my($err) = RRDs::error; |
540 |
< |
print STDERR "Error creating rrd for $rrddir/$machine/$type: $err\n" if $err; |
540 |
> |
&error("Error creating rrd for $rrddir/$machine/$type: $err\n") if $err; |
541 |
> |
} |
542 |
> |
|
543 |
> |
# prints out usage information then exits |
544 |
> |
sub usage() { |
545 |
> |
print "Usage: watch.pl [options] i-scream_client_interface port\n"; |
546 |
> |
print "Options\n"; |
547 |
> |
print " -c config Specifies the configuration file\n"; |
548 |
> |
print " default: rrdgraphing.conf\n"; |
549 |
> |
print " -v Be verbose about what's happening\n"; |
550 |
> |
print " -q Be quiet, even supress errors\n"; |
551 |
> |
print " -V Print version number\n"; |
552 |
> |
print " -h Prints this help page\n"; |
553 |
> |
exit(1); |
554 |
> |
} |
555 |
> |
|
556 |
> |
# prints a log message if verbose is turned on |
557 |
> |
sub log() { |
558 |
> |
my($msg) = @_; |
559 |
> |
print $msg if $verbose; |
560 |
> |
} |
561 |
> |
|
562 |
> |
# prints an error message unless quiet is turned on |
563 |
> |
sub error() { |
564 |
> |
my($msg) = @_; |
565 |
> |
print STDERR $msg unless $quiet; |
566 |
|
} |