]> git.zerfleddert.de Git - upsgraph/blame - upsgraph.pl
remove temp limits
[upsgraph] / upsgraph.pl
CommitLineData
e18c93b3
MG
1#!/usr/bin/perl -w
2
1c9fb9df
MG
3if ((@ARGV != 1) && (@ARGV != 2)) {
4 print STDERR "Syntax: ${0} configfile [uid]\n";
e18c93b3
MG
5 exit(1);
6}
7
1c9fb9df 8use Net::SNMP;
0e572cdc 9use IO::Socket::INET;
e5da3876
MG
10use RRDs;
11use Data::Dumper;
e18c93b3 12
1c9fb9df 13$UPSGRAPH::outdir = "";
1c9fb9df 14$UPSGRAPH::step = 60;
e5da3876 15$UPSGRAPH::keep = (370*24*60*60)/$UPSGRAPH::step;
6c1071ee 16$UPSGRAPH::hosts = ();
e18c93b3 17
1c9fb9df 18do $ARGV[0] or die "can't read config: $!";
e18c93b3 19
1c9fb9df 20my $outdir = $UPSGRAPH::outdir;
1c9fb9df 21my $step = $UPSGRAPH::step;
e5da3876 22my $keep = $UPSGRAPH::keep;
6c1071ee 23my $hosts = $UPSGRAPH::hosts;
e18c93b3 24
e5da3876 25sub rrdcreate(@) {
21377f43
MG
26 my $newrrd = shift;
27 my $field = shift;
6c1071ee 28 my $vars = shift;
e5da3876
MG
29 my $start = shift;
30
21377f43 31 my @cmd = ("${newrrd}", "--step=${step}");
e5da3876
MG
32
33 if (defined($start)) {
34 push @cmd, "--start=${start}";
35 }
36
21377f43
MG
37 push @cmd, "DS:${field}:GAUGE:600:" .
38 $vars->{$field}->{'min'} . ":" .
39 $vars->{$field}->{'max'} . " ";
40
e5da3876
MG
41 push @cmd, "RRA:AVERAGE:0.5:1:${keep}";
42
43 RRDs::create(@cmd);
44 if (RRDs::error) {
45 print "Error while creating: " . RRDs::error . "\n";
46 exit 1;
47 }
48}
49
6c1071ee
MG
50sub fetch_snmp(@) {
51 my $address = shift;
52 my $community = shift;
53 my $oid = shift;
e5da3876 54
6c1071ee
MG
55 (my $session, my $error) = Net::SNMP->session(Hostname => $address,
56 Community => $community);
e18c93b3 57
0e572cdc
MG
58 if (!$session) {
59 print STDERR "session error: $error";
60 }
e5da3876 61
6c1071ee 62 $session->translate(0);
e5da3876 63
0e572cdc 64 my $result = $session->get_request($oid);
e5da3876 65
6c1071ee 66 $session->close;
21377f43 67
0e572cdc
MG
68 return undef if (!defined($result));
69
70 $result->{$oid};
71}
72
73sub fetch_tcp(@) {
74 my $address = shift;
75 my $port = shift;
76
77 my $sock = IO::Socket::INET->new(PeerAddr => $address,
78 PeerPort => $port,
79 Proto => 'tcp',
80 Timeout => 1);
81
82 return undef if (!$sock);
83
84 chomp(my $value = <$sock>);
85
86 close($sock);
87
88 if (!$value) {
89 return undef;
90 }
91
92 $value=~ s/\s//g;
93
94 $value;
6c1071ee 95}
e5da3876 96
6c1071ee
MG
97if ($> == 0) {
98 if (@ARGV != 2) {
99 print STDERR "Running as root, please provide UID as 2th argument!\n";
100 exit(1);
e5da3876
MG
101 }
102
6c1071ee
MG
103 print "Running as root, switching to ".$ARGV[1]."\n";
104 $< = $> = $ARGV[1];
21377f43 105}
e5da3876 106
6c1071ee
MG
107foreach my $host (@$hosts) {
108 my $rrdfile = $host->{'rrdfile'};
21377f43 109
6c1071ee
MG
110 if (-e "${rrdfile}") {
111 print "Reading old ${rrdfile} to preserve data...\n";
e5da3876 112
6c1071ee
MG
113 my $rrdinfo = RRDs::info("${rrdfile}");
114 if (RRDs::error) {
115 print "Error while getting info: " . RRDs::error . "\n";
116 exit 1;
117 }
21377f43
MG
118
119 (my $start, my $ostep, my $names, my $data) =
6c1071ee 120 RRDs::fetch("${rrdfile}",
21377f43
MG
121 "-s " . (time() - ($rrdinfo->{'rra[0].rows'} * $rrdinfo->{'step'})),
122 "AVERAGE");
123
124 if (RRDs::error) {
125 print "Error while fetching data: " . RRDs::error . "\n";
126 exit 1;
127 }
128
6c1071ee
MG
129 foreach my $field (@$names) {
130 if (! -e "${rrdfile}.${field}") {
131 rrdcreate("${rrdfile}.${field}",
132 "${field}",
133 $host->{'vars'},
134 (${start}-${ostep}));
135 }
136 }
21377f43
MG
137
138 my $pos = $start;
139 foreach my $line (@$data) {
6c1071ee
MG
140 foreach my $field (@$names) {
141 my $val = shift (@$line);
21377f43 142 $val = 'U' if (!defined($val));
21377f43 143
6c1071ee
MG
144 RRDs::update("${rrdfile}.${field}", "${pos}:${val}");
145 if (RRDs::error) {
146 print "Can't insert data: " . RRDs::error . "\n";
147 exit 1;
148 }
149
21377f43 150 }
6c1071ee 151
21377f43
MG
152 $pos += $ostep;
153
154 if ((($pos-$start)/$ostep) == $#$data) {
155 last;
156 }
157 }
158
6c1071ee
MG
159 rename("${rrdfile}", "${rrdfile}.old") or die "Can't rename old file: $!\n";
160 }
21377f43 161
6c1071ee
MG
162 foreach my $field (@{$host->{'fields'}}) {
163 if (! -e "${rrdfile}.${field}") {
164 print "Creating ${rrdfile}.${field}...\n";
165 rrdcreate("${rrdfile}.${field}",
166 "${field}",
167 $host->{'vars'});
168 }
169
170 my $rrdinfo = RRDs::info("${rrdfile}.${field}");
21377f43
MG
171 if (RRDs::error) {
172 print "Error while getting info: " . RRDs::error . "\n";
173 exit 1;
174 }
175
178e4778
MG
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'});
179 }
180 } else {
181 if ($host->{'vars'}->{$field}->{'min'} ne 'U') {
182 RRDs::tune("${rrdfile}.${field}","-i",$field.":".$host->{'vars'}->{$field}->{'min'});
183 }
184 }
185
186 if (RRDs::error) {
187 print "Error while setting min: " . RRDs::error . "\n";
188 exit 1;
189 }
190
191 if (defined($rrdinfo->{"ds[${field}].max"})) {
192 if ($rrdinfo->{"ds[${field}].max"} ne $host->{'vars'}->{$field}->{'max'}) {
178e4778
MG
193 RRDs::tune("${rrdfile}.${field}","-a",$field.":".$host->{'vars'}->{$field}->{'max'});
194 }
195 } else {
196 if ($host->{'vars'}->{$field}->{'max'} ne 'U') {
197 RRDs::tune("${rrdfile}.${field}","-a",$field.":".$host->{'vars'}->{$field}->{'max'});
198 }
199 }
200
201 if (RRDs::error) {
202 print "Error while setting max: " . RRDs::error . "\n";
203 exit 1;
204 }
205
21377f43 206 if ($rrdinfo->{'rra[0].rows'} != $keep) {
6c1071ee
MG
207 print "Resizing ${rrdfile}.${field} from " . $rrdinfo->{'rra[0].rows'} .
208 " to ${keep} samples.\n";
e18c93b3 209
6c1071ee
MG
210 (my $start, my $ostep, my $names, my $data) =
211 RRDs::fetch("${rrdfile}.${field}",
212 "-s " . (time() - ($rrdinfo->{'rra[0].rows'} * $rrdinfo->{'step'})),
213 "AVERAGE");
6aa53fc5 214
6c1071ee
MG
215 if (RRDs::error) {
216 print "Error while fetching data: " . RRDs::error . "\n";
217 exit 1;
218 }
6aa53fc5 219
6c1071ee
MG
220 rrdcreate("${rrdfile}.${field}.new",
221 "${field}",
222 $host->{'vars'},
223 (${start}-${ostep}));
6aa53fc5 224
6c1071ee 225 print "Preserving data since " . localtime($start) . "\n";
e18c93b3 226
6c1071ee
MG
227 my $pos = $start;
228 foreach my $line (@$data) {
229 my $vline = "${pos}";
e18c93b3 230
6c1071ee
MG
231 foreach my $val (@$line) {
232 $val = 'U' if (!defined($val));
233 $vline .= ":${val}";
234 }
235 RRDs::update("${rrdfile}.${field}.new", $vline) or die "Can't insert data\n";
e18c93b3 236
6c1071ee
MG
237 if (RRDs::error) {
238 print "Error while updating: " . RRDs::error . "\n";
239 exit 1;
240 }
241 $pos += $ostep;
e18c93b3 242
6c1071ee
MG
243 if ((($pos-$start)/$ostep) == $#$data) {
244 last;
245 }
246 }
e18c93b3 247
6c1071ee
MG
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";
e18c93b3 250
6c1071ee
MG
251 $rrdinfo = RRDs::info("${rrdfile}.${field}");
252 if (RRDs::error) {
253 print "Error while getting info: " . RRDs::error . "\n";
254 exit 1;
255 }
e18c93b3 256
6c1071ee
MG
257 if ($rrdinfo->{'rra[0].rows'} != $keep) {
258 print "Failed!\n";
259 exit 1;
260 }
e18c93b3 261 }
e18c93b3 262 }
6c1071ee
MG
263}
264
265my $child = fork();
e18c93b3 266
6c1071ee
MG
267die "fork failed!" if (!defined($child));
268
269exit 0 if ($child != 0);
270
271while(1) {
e18c93b3
MG
272 open(HTML, ">${outdir}/index.html.new");
273
2c148a8e 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>';
e18c93b3
MG
275 print HTML '<body bgcolor="#ffffff">';
276
6c1071ee 277 foreach my $host (@$hosts) {
2c148a8e
MG
278 print HTML "[<a href=\"#".${host}->{'name'}."\">".${host}->{'name'}."</a>]&nbsp;";
279 }
280 print HTML "<br>\n";
281
282 foreach my $host (@$hosts) {
283 print HTML "<br>\n";
284 print HTML "<a name=\"".${host}->{'name'}."\"></a>\n";
6c1071ee
MG
285 my $vars = $host->{'vars'};
286 my $rrdfile = $host->{'rrdfile'};
287 my $hostname = $host->{'name'};
288
289 foreach my $var (@{$host->{'fields'}}) {
290 delete $vars->{$var}->{'value'};
e5da3876 291
0e572cdc
MG
292 my $result;
293
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'});
300 }
301
6c1071ee
MG
302 next unless (defined $result);
303
0e572cdc 304 $vars->{$var}->{'value'} = $result;
6c1071ee
MG
305 if (defined($vars->{$var}->{'factor'})) {
306 $vars->{$var}->{'value'} *= $vars->{$var}->{'factor'};
307 }
308 }
309
310 foreach my $var (@{$host->{'fields'}}) {
311 if (!(defined($vars->{$var}->{'value'}))) {
312 $vars->{$var}->{'value'} = 'U';
313 }
314 RRDs::update("${rrdfile}.${var}", "N:" . $vars->{$var}->{'value'});
315 }
e5da3876 316 if (RRDs::error) {
6c1071ee 317 print "Error while updating: " . RRDs::error . "\n";
e5da3876
MG
318 }
319
6c1071ee
MG
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);
e5da3876 325
6c1071ee
MG
326 if (RRDs::error) {
327 print "Error while graphing: " . RRDs::error . "\n";
328 } else {
329 rename("${outdir}/${hostname}.${var}.png.new", "${outdir}/${hostname}.${var}.png");
330 }
e5da3876 331
2c148a8e 332 print HTML "<a href=\"${hostname}.${var}.html\"><img src=\"${hostname}.${var}.png\" width=\"${width}\" height=\"${height}\" border=\"0\"></a><br>\n";
58c56c83 333
6c1071ee
MG
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">';
58c56c83 337
58c56c83 338
6c1071ee
MG
339 push @graphdef, "VDEF:min=${var},MINIMUM";
340 push @graphdef, "GPRINT:min:Minimum\\: %.2lf";
58c56c83 341
6c1071ee
MG
342 push @graphdef, "VDEF:avg=${var},AVERAGE";
343 push @graphdef, "GPRINT:avg:Average\\: %.2lf";
58c56c83 344
6c1071ee
MG
345 push @graphdef, "VDEF:max=${var},MAXIMUM";
346 push @graphdef, "GPRINT:max:Maximum\\: %.2lf";
e5da3876 347
6c1071ee
MG
348 push @graphdef, "VDEF:cur=${var},LAST";
349 push @graphdef, "GPRINT:cur:Current\\: %.2lf";
e5da3876 350
6c1071ee
MG
351 ($averages, $width, $height) =
352 RRDs::graph("${outdir}/${hostname}.${var}.long.png.new",
353 "-w", "1008", @graphdef);
e5da3876 354
6c1071ee
MG
355 if (RRDs::error) {
356 print "Error while graphing: " . RRDs::error . "\n";
357 } else {
358 rename("${outdir}/${hostname}.${var}.long.png.new", "${outdir}/${hostname}.${var}.long.png");
359 }
e5da3876 360
6c1071ee
MG
361 print HTML2 "<img src=\"${hostname}.${var}.long.png\" width=\"${width}\" height=\"${height}\"><br>";
362
363 ($averages, $width, $height) =
364 RRDs::graph("${outdir}/${hostname}.${var}.week.png.new",
365 "-w", "1008", "-e", "now", "-s", "end-1w", @graphdef);
366
367 if (RRDs::error) {
368 print "Error while graphing: " . RRDs::error . "\n";
369 } else {
370 rename("${outdir}/${hostname}.${var}.week.png.new", "${outdir}/${hostname}.${var}.week.png");
371 }
e5da3876 372
6c1071ee 373 print HTML2 "<img src=\"${hostname}.${var}.week.png\" width=\"${width}\" height=\"${height}\"><br>";
e5da3876 374
6c1071ee
MG
375 ($averages, $width, $height) =
376 RRDs::graph("${outdir}/${hostname}.${var}.year.png.new",
377 "-w", "1008", "-e", "now", "-s", "end-1y", @graphdef);
e5da3876 378
6c1071ee
MG
379 if (RRDs::error) {
380 print "Error while graphing: " . RRDs::error . "\n";
381 } else {
382 rename("${outdir}/${hostname}.${var}.year.png.new", "${outdir}/${hostname}.${var}.year.png");
383 }
e18c93b3 384
6c1071ee 385 print HTML2 "<img src=\"${hostname}.${var}.year.png\" width=\"${width}\" height=\"${height}\"><br>";
e18c93b3 386
6c1071ee
MG
387 print HTML2 "</body></html>\n";
388 close(HTML2);
389 rename("${outdir}/${hostname}.${var}.html.new", "${outdir}/${hostname}.${var}.html");
390 }
e18c93b3
MG
391 }
392
393 print HTML "</body></html>\n";
394 print HTML "<br>Generated on: " . localtime(time());
863e62dc 395 print HTML ' by <a href="http://git.zerfleddert.de/cgi-bin/gitweb.cgi/upsgraph">upsgraph</a>.';
e18c93b3
MG
396
397 close(HTML);
398
399 rename("${outdir}/index.html.new", "${outdir}/index.html");
400
401 sleep(${step}/2);
402}
Impressum, Datenschutz