]>
git.zerfleddert.de Git - upsgraph/blob - upsgraph.pl
82e0259fc1c0cd7cec6917f125a8ee7dce324582
3 if ((@ARGV != 1) && (@ARGV != 2)) {
4 print STDERR
"Syntax: ${0} configfile [uid]\n";
13 $UPSGRAPH::outdir
= "";
15 $UPSGRAPH::keep
= (370*24*60*60)/$UPSGRAPH::step
;
16 $UPSGRAPH::hosts
= ();
18 do $ARGV[0] or die "can't read config: $!";
20 my $outdir = $UPSGRAPH::outdir
;
21 my $step = $UPSGRAPH::step
;
22 my $keep = $UPSGRAPH::keep
;
23 my $hosts = $UPSGRAPH::hosts
;
31 my @cmd = ("${newrrd}", "--step=${step}");
33 if (defined($start)) {
34 push @cmd, "--start=${start}";
37 push @cmd, "DS:${field}:GAUGE:600:" .
38 $vars->{$field}->{'min'} . ":" .
39 $vars->{$field}->{'max'} . " ";
41 push @cmd, "RRA:AVERAGE:0.5:1:${keep}";
45 print "Error while creating: " . RRDs
::error
. "\n";
52 my $community = shift;
55 (my $session, my $error) = Net
::SNMP
->session(Hostname
=> $address,
56 Community
=> $community);
59 print STDERR
"session error: $error";
62 $session->translate(0);
64 my $result = $session->get_request($oid);
68 return undef if (!defined($result));
77 my $sock = IO
::Socket
::INET
->new(PeerAddr
=> $address,
82 return undef if (!$sock);
84 chomp(my $value = <$sock>);
99 print STDERR
"Running as root, please provide UID as 2th argument!\n";
103 print "Running as root, switching to ".$ARGV[1]."\n";
107 foreach my $host (@
$hosts) {
108 my $rrdfile = $host->{'rrdfile'};
110 if (-e
"${rrdfile}") {
111 print "Reading old ${rrdfile} to preserve data...\n";
113 my $rrdinfo = RRDs
::info
("${rrdfile}");
115 print "Error while getting info: " . RRDs
::error
. "\n";
119 (my $start, my $ostep, my $names, my $data) =
120 RRDs
::fetch
("${rrdfile}",
121 "-s " . (time() - ($rrdinfo->{'rra[0].rows'} * $rrdinfo->{'step'})),
125 print "Error while fetching data: " . RRDs
::error
. "\n";
129 foreach my $field (@
$names) {
130 if (! -e
"${rrdfile}.${field}") {
131 rrdcreate
("${rrdfile}.${field}",
134 (${start
}-${ostep
}));
139 foreach my $line (@
$data) {
140 foreach my $field (@
$names) {
141 my $val = shift (@
$line);
142 $val = 'U' if (!defined($val));
144 RRDs
::update
("${rrdfile}.${field}", "${pos}:${val}");
146 print "Can't insert data: " . RRDs
::error
. "\n";
154 if ((($pos-$start)/$ostep) == $#$data) {
159 rename("${rrdfile}", "${rrdfile}.old") or die "Can't rename old file: $!\n";
162 foreach my $field (@
{$host->{'fields'}}) {
163 if (! -e
"${rrdfile}.${field}") {
164 print "Creating ${rrdfile}.${field}...\n";
165 rrdcreate
("${rrdfile}.${field}",
170 my $rrdinfo = RRDs
::info
("${rrdfile}.${field}");
172 print "Error while getting info: " . RRDs
::error
. "\n";
176 if (defined($rrdinfo->{"ds[${field}].min"})) {
177 if ($rrdinfo->{"ds[${field}].min"} ne $host->{'vars'}->{$field}->{'min'}) {
178 RRDs
::tune
("${rrdfile}.${field}","-i",$field.":".$host->{'vars'}->{$field}->{'min'});
181 if ($host->{'vars'}->{$field}->{'min'} ne 'U') {
182 RRDs
::tune
("${rrdfile}.${field}","-i",$field.":".$host->{'vars'}->{$field}->{'min'});
187 print "Error while setting min: " . RRDs
::error
. "\n";
191 if (defined($rrdinfo->{"ds[${field}].max"})) {
192 if ($rrdinfo->{"ds[${field}].max"} ne $host->{'vars'}->{$field}->{'max'}) {
193 RRDs
::tune
("${rrdfile}.${field}","-a",$field.":".$host->{'vars'}->{$field}->{'max'});
196 if ($host->{'vars'}->{$field}->{'max'} ne 'U') {
197 RRDs
::tune
("${rrdfile}.${field}","-a",$field.":".$host->{'vars'}->{$field}->{'max'});
202 print "Error while setting max: " . RRDs
::error
. "\n";
206 if ($rrdinfo->{'rra[0].rows'} != $keep) {
207 print "Resizing ${rrdfile}.${field} from " . $rrdinfo->{'rra[0].rows'} .
208 " to ${keep} samples.\n";
210 (my $start, my $ostep, my $names, my $data) =
211 RRDs
::fetch
("${rrdfile}.${field}",
212 "-s " . (time() - ($rrdinfo->{'rra[0].rows'} * $rrdinfo->{'step'})),
216 print "Error while fetching data: " . RRDs
::error
. "\n";
220 rrdcreate
("${rrdfile}.${field}.new",
223 (${start
}-${ostep
}));
225 print "Preserving data since " . localtime($start) . "\n";
228 foreach my $line (@
$data) {
229 my $vline = "${pos}";
231 foreach my $val (@
$line) {
232 $val = 'U' if (!defined($val));
235 RRDs
::update
("${rrdfile}.${field}.new", $vline) or die "Can't insert data\n";
238 print "Error while updating: " . RRDs
::error
. "\n";
243 if ((($pos-$start)/$ostep) == $#$data) {
248 rename("${rrdfile}.${field}", "${rrdfile}.${field}.old") or die "Can't rename old file: $!\n";
249 rename("${rrdfile}.${field}.new", "${rrdfile}.${field}") or die "Can't rename new file: $!\n";
251 $rrdinfo = RRDs
::info
("${rrdfile}.${field}");
253 print "Error while getting info: " . RRDs
::error
. "\n";
257 if ($rrdinfo->{'rra[0].rows'} != $keep) {
267 die "fork failed!" if (!defined($child));
269 exit 0 if ($child != 0);
272 open(HTML
, ">${outdir}/index.html.new");
274 print HTML
'<html><head><meta http-equiv="refresh" content="60"/><meta http-equiv="cache-control" content="no-cache"/><meta http-equiv="pragma" content="no-cache"/><meta http_equiv="expires" content="Sat, 26 Jul 1997 05:00:00 GMT"/><title>Status</title></head>';
275 print HTML
'<body bgcolor="#ffffff">';
277 foreach my $host (@
$hosts) {
278 print HTML
"[<a href=\"#".${host
}->{'name'}."\">".${host
}->{'name'}."</a>] ";
282 foreach my $host (@
$hosts) {
284 print HTML
"<a name=\"".${host
}->{'name'}."\"></a>\n";
285 my $vars = $host->{'vars'};
286 my $rrdfile = $host->{'rrdfile'};
287 my $hostname = $host->{'name'};
289 foreach my $var (@
{$host->{'fields'}}) {
290 delete $vars->{$var}->{'value'};
294 if ((!defined($vars->{$var}->{'proto'})) ||
295 ($vars->{$var}->{'proto'} eq '') ||
296 ($vars->{$var}->{'proto'} eq 'snmp')) {
297 $result = fetch_snmp
($host->{'address'}, $host->{'community'}, $vars->{$var}->{'oid'});
298 } elsif ($vars->{$var}->{'proto'} eq 'tcp') {
299 $result = fetch_tcp
($host->{'address'}, $vars->{$var}->{'port'});
302 next unless (defined $result);
304 $vars->{$var}->{'value'} = $result;
305 if (defined($vars->{$var}->{'factor'})) {
306 $vars->{$var}->{'value'} *= $vars->{$var}->{'factor'};
310 foreach my $var (@
{$host->{'fields'}}) {
311 if (!(defined($vars->{$var}->{'value'}))) {
312 $vars->{$var}->{'value'} = 'U';
314 RRDs
::update
("${rrdfile}.${var}", "N:" . $vars->{$var}->{'value'});
317 print "Error while updating: " . RRDs
::error
. "\n";
320 foreach my $var (@
{$host->{'fields'}}) {
321 my @graphdef = ("-t", $hostname." - ".$vars->{$var}->{'name'}, "DEF:${var}=${rrdfile}.${var}:${var}:AVERAGE", "LINE1:${var}#FF0000");
322 (my $averages, my $width, my $height) =
323 RRDs
::graph
("${outdir}/${hostname}.${var}.png.new",
324 "-w", "720", @graphdef);
327 print "Error while graphing: " . RRDs
::error
. "\n";
329 rename("${outdir}/${hostname}.${var}.png.new", "${outdir}/${hostname}.${var}.png");
332 print HTML
"<a href=\"${hostname}.${var}.html\"><img src=\"${hostname}.${var}.png\" width=\"${width}\" height=\"${height}\" border=\"0\"></a><br>\n";
334 open (HTML2
, ">${outdir}/${hostname}.${var}.html.new");
335 print HTML2
"<html><head><title>" . $vars->{$var}->{'name'} . "</title></head>";
336 print HTML2
'<body bgcolor="#ffffff">';
339 push @graphdef, "VDEF:min=${var},MINIMUM";
340 push @graphdef, "GPRINT:min:Minimum\\: %.2lf";
342 push @graphdef, "VDEF:avg=${var},AVERAGE";
343 push @graphdef, "GPRINT:avg:Average\\: %.2lf";
345 push @graphdef, "VDEF:max=${var},MAXIMUM";
346 push @graphdef, "GPRINT:max:Maximum\\: %.2lf";
348 push @graphdef, "VDEF:cur=${var},LAST";
349 push @graphdef, "GPRINT:cur:Current\\: %.2lf";
351 ($averages, $width, $height) =
352 RRDs
::graph
("${outdir}/${hostname}.${var}.long.png.new",
353 "-w", "1008", @graphdef);
356 print "Error while graphing: " . RRDs
::error
. "\n";
358 rename("${outdir}/${hostname}.${var}.long.png.new", "${outdir}/${hostname}.${var}.long.png");
361 print HTML2
"<img src=\"${hostname}.${var}.long.png\" width=\"${width}\" height=\"${height}\"><br>";
363 ($averages, $width, $height) =
364 RRDs
::graph
("${outdir}/${hostname}.${var}.week.png.new",
365 "-w", "1008", "-e", "now", "-s", "end-1w", @graphdef);
368 print "Error while graphing: " . RRDs
::error
. "\n";
370 rename("${outdir}/${hostname}.${var}.week.png.new", "${outdir}/${hostname}.${var}.week.png");
373 print HTML2
"<img src=\"${hostname}.${var}.week.png\" width=\"${width}\" height=\"${height}\"><br>";
375 ($averages, $width, $height) =
376 RRDs
::graph
("${outdir}/${hostname}.${var}.year.png.new",
377 "-w", "1008", "-e", "now", "-s", "end-1y", @graphdef);
380 print "Error while graphing: " . RRDs
::error
. "\n";
382 rename("${outdir}/${hostname}.${var}.year.png.new", "${outdir}/${hostname}.${var}.year.png");
385 print HTML2
"<img src=\"${hostname}.${var}.year.png\" width=\"${width}\" height=\"${height}\"><br>";
387 print HTML2
"</body></html>\n";
389 rename("${outdir}/${hostname}.${var}.html.new", "${outdir}/${hostname}.${var}.html");
393 print HTML
"</body></html>\n";
394 print HTML
"<br>Generated on: " . localtime(time());
395 print HTML
' by <a href="http://git.zerfleddert.de/cgi-bin/gitweb.cgi/upsgraph">upsgraph</a>.';
399 rename("${outdir}/index.html.new", "${outdir}/index.html");