Commit | Line | Data |
---|---|---|
e18c93b3 MG |
1 | #!/usr/bin/perl -w |
2 | ||
1c9fb9df MG |
3 | if ((@ARGV != 1) && (@ARGV != 2)) { |
4 | print STDERR "Syntax: ${0} configfile [uid]\n"; | |
e18c93b3 MG |
5 | exit(1); |
6 | } | |
7 | ||
1c9fb9df | 8 | use Net::SNMP; |
0e572cdc | 9 | use IO::Socket::INET; |
e5da3876 MG |
10 | use RRDs; |
11 | use 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 | 18 | do $ARGV[0] or die "can't read config: $!"; |
e18c93b3 | 19 | |
1c9fb9df | 20 | my $outdir = $UPSGRAPH::outdir; |
1c9fb9df | 21 | my $step = $UPSGRAPH::step; |
e5da3876 | 22 | my $keep = $UPSGRAPH::keep; |
6c1071ee | 23 | my $hosts = $UPSGRAPH::hosts; |
e18c93b3 | 24 | |
e5da3876 | 25 | sub 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 |
50 | sub 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 | ||
73 | sub 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 |
97 | if ($> == 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 |
107 | foreach 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 | ||
176 | if ($rrdinfo->{'rra[0].rows'} != $keep) { | |
6c1071ee MG |
177 | print "Resizing ${rrdfile}.${field} from " . $rrdinfo->{'rra[0].rows'} . |
178 | " to ${keep} samples.\n"; | |
e18c93b3 | 179 | |
6c1071ee MG |
180 | (my $start, my $ostep, my $names, my $data) = |
181 | RRDs::fetch("${rrdfile}.${field}", | |
182 | "-s " . (time() - ($rrdinfo->{'rra[0].rows'} * $rrdinfo->{'step'})), | |
183 | "AVERAGE"); | |
6aa53fc5 | 184 | |
6c1071ee MG |
185 | if (RRDs::error) { |
186 | print "Error while fetching data: " . RRDs::error . "\n"; | |
187 | exit 1; | |
188 | } | |
6aa53fc5 | 189 | |
6c1071ee MG |
190 | rrdcreate("${rrdfile}.${field}.new", |
191 | "${field}", | |
192 | $host->{'vars'}, | |
193 | (${start}-${ostep})); | |
6aa53fc5 | 194 | |
6c1071ee | 195 | print "Preserving data since " . localtime($start) . "\n"; |
e18c93b3 | 196 | |
6c1071ee MG |
197 | my $pos = $start; |
198 | foreach my $line (@$data) { | |
199 | my $vline = "${pos}"; | |
e18c93b3 | 200 | |
6c1071ee MG |
201 | foreach my $val (@$line) { |
202 | $val = 'U' if (!defined($val)); | |
203 | $vline .= ":${val}"; | |
204 | } | |
205 | RRDs::update("${rrdfile}.${field}.new", $vline) or die "Can't insert data\n"; | |
e18c93b3 | 206 | |
6c1071ee MG |
207 | if (RRDs::error) { |
208 | print "Error while updating: " . RRDs::error . "\n"; | |
209 | exit 1; | |
210 | } | |
211 | $pos += $ostep; | |
e18c93b3 | 212 | |
6c1071ee MG |
213 | if ((($pos-$start)/$ostep) == $#$data) { |
214 | last; | |
215 | } | |
216 | } | |
e18c93b3 | 217 | |
6c1071ee MG |
218 | rename("${rrdfile}.${field}", "${rrdfile}.${field}.old") or die "Can't rename old file: $!\n"; |
219 | rename("${rrdfile}.${field}.new", "${rrdfile}.${field}") or die "Can't rename new file: $!\n"; | |
e18c93b3 | 220 | |
6c1071ee MG |
221 | $rrdinfo = RRDs::info("${rrdfile}.${field}"); |
222 | if (RRDs::error) { | |
223 | print "Error while getting info: " . RRDs::error . "\n"; | |
224 | exit 1; | |
225 | } | |
e18c93b3 | 226 | |
6c1071ee MG |
227 | if ($rrdinfo->{'rra[0].rows'} != $keep) { |
228 | print "Failed!\n"; | |
229 | exit 1; | |
230 | } | |
e18c93b3 | 231 | } |
e18c93b3 | 232 | } |
6c1071ee MG |
233 | } |
234 | ||
235 | my $child = fork(); | |
e18c93b3 | 236 | |
6c1071ee MG |
237 | die "fork failed!" if (!defined($child)); |
238 | ||
239 | exit 0 if ($child != 0); | |
240 | ||
241 | while(1) { | |
e18c93b3 MG |
242 | open(HTML, ">${outdir}/index.html.new"); |
243 | ||
2c148a8e | 244 | 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 |
245 | print HTML '<body bgcolor="#ffffff">'; |
246 | ||
6c1071ee | 247 | foreach my $host (@$hosts) { |
2c148a8e MG |
248 | print HTML "[<a href=\"#".${host}->{'name'}."\">".${host}->{'name'}."</a>] "; |
249 | } | |
250 | print HTML "<br>\n"; | |
251 | ||
252 | foreach my $host (@$hosts) { | |
253 | print HTML "<br>\n"; | |
254 | print HTML "<a name=\"".${host}->{'name'}."\"></a>\n"; | |
6c1071ee MG |
255 | my $vars = $host->{'vars'}; |
256 | my $rrdfile = $host->{'rrdfile'}; | |
257 | my $hostname = $host->{'name'}; | |
258 | ||
259 | foreach my $var (@{$host->{'fields'}}) { | |
260 | delete $vars->{$var}->{'value'}; | |
e5da3876 | 261 | |
0e572cdc MG |
262 | my $result; |
263 | ||
264 | if ((!defined($vars->{$var}->{'proto'})) || | |
265 | ($vars->{$var}->{'proto'} eq '') || | |
266 | ($vars->{$var}->{'proto'} eq 'snmp')) { | |
267 | $result = fetch_snmp($host->{'address'}, $host->{'community'}, $vars->{$var}->{'oid'}); | |
268 | } elsif ($vars->{$var}->{'proto'} eq 'tcp') { | |
269 | $result = fetch_tcp($host->{'address'}, $vars->{$var}->{'port'}); | |
270 | } | |
271 | ||
6c1071ee MG |
272 | next unless (defined $result); |
273 | ||
0e572cdc | 274 | $vars->{$var}->{'value'} = $result; |
6c1071ee MG |
275 | if (defined($vars->{$var}->{'factor'})) { |
276 | $vars->{$var}->{'value'} *= $vars->{$var}->{'factor'}; | |
277 | } | |
278 | } | |
279 | ||
280 | foreach my $var (@{$host->{'fields'}}) { | |
281 | if (!(defined($vars->{$var}->{'value'}))) { | |
282 | $vars->{$var}->{'value'} = 'U'; | |
283 | } | |
284 | RRDs::update("${rrdfile}.${var}", "N:" . $vars->{$var}->{'value'}); | |
285 | } | |
e5da3876 | 286 | if (RRDs::error) { |
6c1071ee | 287 | print "Error while updating: " . RRDs::error . "\n"; |
e5da3876 MG |
288 | } |
289 | ||
6c1071ee MG |
290 | foreach my $var (@{$host->{'fields'}}) { |
291 | my @graphdef = ("-t", $hostname." - ".$vars->{$var}->{'name'}, "DEF:${var}=${rrdfile}.${var}:${var}:AVERAGE", "LINE1:${var}#FF0000"); | |
292 | (my $averages, my $width, my $height) = | |
293 | RRDs::graph("${outdir}/${hostname}.${var}.png.new", | |
294 | "-w", "720", @graphdef); | |
e5da3876 | 295 | |
6c1071ee MG |
296 | if (RRDs::error) { |
297 | print "Error while graphing: " . RRDs::error . "\n"; | |
298 | } else { | |
299 | rename("${outdir}/${hostname}.${var}.png.new", "${outdir}/${hostname}.${var}.png"); | |
300 | } | |
e5da3876 | 301 | |
2c148a8e | 302 | print HTML "<a href=\"${hostname}.${var}.html\"><img src=\"${hostname}.${var}.png\" width=\"${width}\" height=\"${height}\" border=\"0\"></a><br>\n"; |
58c56c83 | 303 | |
6c1071ee MG |
304 | open (HTML2, ">${outdir}/${hostname}.${var}.html.new"); |
305 | print HTML2 "<html><head><title>" . $vars->{$var}->{'name'} . "</title></head>"; | |
306 | print HTML2 '<body bgcolor="#ffffff">'; | |
58c56c83 | 307 | |
58c56c83 | 308 | |
6c1071ee MG |
309 | push @graphdef, "VDEF:min=${var},MINIMUM"; |
310 | push @graphdef, "GPRINT:min:Minimum\\: %.2lf"; | |
58c56c83 | 311 | |
6c1071ee MG |
312 | push @graphdef, "VDEF:avg=${var},AVERAGE"; |
313 | push @graphdef, "GPRINT:avg:Average\\: %.2lf"; | |
58c56c83 | 314 | |
6c1071ee MG |
315 | push @graphdef, "VDEF:max=${var},MAXIMUM"; |
316 | push @graphdef, "GPRINT:max:Maximum\\: %.2lf"; | |
e5da3876 | 317 | |
6c1071ee MG |
318 | push @graphdef, "VDEF:cur=${var},LAST"; |
319 | push @graphdef, "GPRINT:cur:Current\\: %.2lf"; | |
e5da3876 | 320 | |
6c1071ee MG |
321 | ($averages, $width, $height) = |
322 | RRDs::graph("${outdir}/${hostname}.${var}.long.png.new", | |
323 | "-w", "1008", @graphdef); | |
e5da3876 | 324 | |
6c1071ee MG |
325 | if (RRDs::error) { |
326 | print "Error while graphing: " . RRDs::error . "\n"; | |
327 | } else { | |
328 | rename("${outdir}/${hostname}.${var}.long.png.new", "${outdir}/${hostname}.${var}.long.png"); | |
329 | } | |
e5da3876 | 330 | |
6c1071ee MG |
331 | print HTML2 "<img src=\"${hostname}.${var}.long.png\" width=\"${width}\" height=\"${height}\"><br>"; |
332 | ||
333 | ($averages, $width, $height) = | |
334 | RRDs::graph("${outdir}/${hostname}.${var}.week.png.new", | |
335 | "-w", "1008", "-e", "now", "-s", "end-1w", @graphdef); | |
336 | ||
337 | if (RRDs::error) { | |
338 | print "Error while graphing: " . RRDs::error . "\n"; | |
339 | } else { | |
340 | rename("${outdir}/${hostname}.${var}.week.png.new", "${outdir}/${hostname}.${var}.week.png"); | |
341 | } | |
e5da3876 | 342 | |
6c1071ee | 343 | print HTML2 "<img src=\"${hostname}.${var}.week.png\" width=\"${width}\" height=\"${height}\"><br>"; |
e5da3876 | 344 | |
6c1071ee MG |
345 | ($averages, $width, $height) = |
346 | RRDs::graph("${outdir}/${hostname}.${var}.year.png.new", | |
347 | "-w", "1008", "-e", "now", "-s", "end-1y", @graphdef); | |
e5da3876 | 348 | |
6c1071ee MG |
349 | if (RRDs::error) { |
350 | print "Error while graphing: " . RRDs::error . "\n"; | |
351 | } else { | |
352 | rename("${outdir}/${hostname}.${var}.year.png.new", "${outdir}/${hostname}.${var}.year.png"); | |
353 | } | |
e18c93b3 | 354 | |
6c1071ee | 355 | print HTML2 "<img src=\"${hostname}.${var}.year.png\" width=\"${width}\" height=\"${height}\"><br>"; |
e18c93b3 | 356 | |
6c1071ee MG |
357 | print HTML2 "</body></html>\n"; |
358 | close(HTML2); | |
359 | rename("${outdir}/${hostname}.${var}.html.new", "${outdir}/${hostname}.${var}.html"); | |
360 | } | |
e18c93b3 MG |
361 | } |
362 | ||
363 | print HTML "</body></html>\n"; | |
364 | print HTML "<br>Generated on: " . localtime(time()); | |
863e62dc | 365 | print HTML ' by <a href="http://git.zerfleddert.de/cgi-bin/gitweb.cgi/upsgraph">upsgraph</a>.'; |
e18c93b3 MG |
366 | |
367 | close(HTML); | |
368 | ||
369 | rename("${outdir}/index.html.new", "${outdir}/index.html"); | |
370 | ||
371 | sleep(${step}/2); | |
372 | } |