chiark / gitweb /
detail shows correct sloths
[rrd-graphs.git] / cgi
1 #!/usr/bin/speedy -w -- -t100 -M1
2
3 use strict qw(vars);
4 use CGI::SpeedyCGI qw/:standard -no_xhtml/;
5 use CGI qw/:standard -no_xhtml/;
6
7 sub fail ($) {
8     print(header(-status=>500),
9           start_html('Error'),
10           h1('Error'),
11           escapeHTML($_[0]),
12           end_html());
13     exit 0;
14 }
15
16 our (@sections, %section_groups, %group_elems, %graphs);
17
18 #---------- initialisation code, run once - graphs setup ----------
19
20 BEGIN {
21
22 our $R= '/var/lib/collectd/rrd/chiark.greenend.org.uk';
23 our $SELF= '/home/ijackson/things/rrd-graphs';
24
25 our @timeranges= (3600, map { $_*86400 } qw(1 7 28), 13*7+1, 366);
26
27 sub graph_of_group ($$$$$) {
28     my ($section, $group, $elem, $basis, $args) = @_;
29     $basis->{Args}= $args;
30     $basis->{Slower}= 0 unless exists $basis->{Slower};
31     $basis->{TimeRanges} ||= \@timeranges;
32     $graphs{$section,$group,$elem}= $basis;
33     if (!exists $group_elems{$section,$group}) {
34         # new group then
35         if (!exists $section_groups{$section}) {
36             # new section even
37             push @sections, $section;
38         }
39         push @{ $section_groups{$section} }, $group;
40     }
41     push @{ $group_elems{$section,$group} }, $elem;
42 }
43
44 sub graph ($$$$) {
45     my ($section, $gname, $basis, $args) = @_;
46     graph_of_group($section, $gname,'', $basis, $args);
47 }
48
49 graph('General', 'Load and processes', { },
50       [
51        "DEF:load=$R/load/load.rrd:shortterm:AVERAGE",
52        (map { "DEF:$_=$R/processes/ps_state-$_.rrd:value:AVERAGE" }
53             qw(blocked running stopped paging sleeping zombies)),
54        "AREA:running#88f:running:STACK",
55        "AREA:blocked#8f8:disk wait:STACK",
56        "AREA:paging#f88:paging:STACK",
57        "LINE:load#000:load",
58        ]);
59
60 graph('General', 'Processes', { },
61       [
62        (map { "DEF:$_=$R/processes/ps_state-$_.rrd:value:AVERAGE" }
63             qw(blocked running stopped paging sleeping zombies)),
64        "CDEF:busy=0".(join '', map { ",$_,+" } qw(running blocked paging)),
65        "AREA:sleeping#ccc:sleeping:STACK",
66        "AREA:stopped#00f:stopped:STACK",
67        "AREA:zombies#ff0:zombie:STACK",
68        "AREA:busy#000:busy:STACK",
69        ]);
70
71 graph('General', 'CPU', { Units => '[%]' },
72       [
73        (map {
74            my $thing= $_;
75            (map { "DEF:$thing$_=$R/cpu-$_/cpu-$thing.rrd:value:AVERAGE" }
76                 (0..7)),
77            "CDEF:$thing=0".join('', map { ",$thing$_,+" } (0..7)).",8.0,/";
78        } qw(idle interrupt nice softirq steal system user wait)),
79        "CDEF:allintr=softirq,steal,+,interrupt,+",
80        "AREA:allintr#ff0:interrupt:STACK",
81        "AREA:system#88f:system:STACK",
82        "AREA:user#00f:user:STACK",
83        "AREA:nice#ccc:nice:STACK",
84        "AREA:wait#f00:wait:STACK",
85        ]);
86
87 graph('General', 'Memory', { },
88       [ '-b',1024,
89        (map { "DEF:swap_$_=$R/swap/swap-$_.rrd:value:AVERAGE" }
90             qw(free used cached)),
91        (map { "DEF:mem_$_=$R/memory/memory-$_.rrd:value:AVERAGE" }
92             qw(buffered free used cached)),
93        "CDEF:c_swap_used=0,swap_used,-",
94        "CDEF:c_swap_cached=0,swap_cached,-",
95        "CDEF:c_swap_free=0,swap_free,-",
96        "AREA:c_swap_used#000:used swap",
97        "AREA:c_swap_cached#888:\"cached\" swap:STACK",
98 #       "AREA:c_swap_free#88f:free swap:STACK",
99        "AREA:mem_used#ff0:used memory",
100        "AREA:mem_buffered#00f:page cache:STACK",
101        "AREA:mem_cached#008:buffer cache:STACK",
102        "AREA:mem_free#ccc:unused memory:STACK",
103        ]);
104
105 graph('General', 'Network', { Units => '[/sec; tx +ve; errs x1000]' },
106       [
107        (map {
108            ("DEF:tx_$_=$R/interface/if_$_-eth0.rrd:tx:AVERAGE",
109             "DEF:rx_$_=$R/interface/if_$_-eth0.rrd:rx:AVERAGE",
110             "CDEF:mrx_$_=0,rx_$_,-")
111            } qw(octets packets errors)),
112        (map {
113            ("CDEF:${_}_kb=${_}_octets,1024,/",
114             "CDEF:${_}_errsx=${_}_errors,1000,*")
115            } qw(mrx tx)),
116        "AREA:tx_kb#080:kby",
117        "LINE:tx_packets#0f0:pkts",
118        "LINE:tx_errsx#000:errs",
119        "AREA:mrx_kb#008:kby",
120        "LINE:mrx_packets#00f:pkts",
121        "LINE:mrx_errsx#444:errs",
122       ]);
123
124 graph('General', 'Users', {  },
125       [
126        "DEF:users=$R/users/users.rrd:users:AVERAGE",
127        "LINE:users#008:users"
128        ]);
129
130 foreach my $src (<$R/df/df-*.rrd>) {
131     my $vol= $src;
132     $vol =~ s,\.rrd$,, or next;
133     $vol =~ s,.*/,,;
134     $vol =~ s,^df-,,;
135     graph('Disk space', $vol, {
136              Slower => 1,
137           },
138           [ '-A','-l',0,'-r',
139            qw(-b 1024 -l 0),
140            (map { "DEF:$_=$src:$_:AVERAGE" } qw(free used)),
141            "AREA:used#000:used:STACK",
142            "AREA:free#88f:free:STACK",
143            ]);
144 }
145
146 our %news_name_map;
147
148 if (!open NM, '<', "$SELF/data/news/name-map") {
149     die unless $!==&ENOENT;
150 } else {
151     while (<NM>) {
152         s/^\s*//; s/\s+$//;
153         next unless m/^[^\#]/;
154         m/^(\S+)\s+(in|out|\*)\s+(\S+)$/ or die;
155         if ($2 eq '*') {
156             $news_name_map{$1,$_}= $3 foreach qw(in out);
157         } else {
158             $news_name_map{$1,$2}= $3;
159         }
160     }
161 }
162
163 sub news_name_sortkey {
164     return join '.', reverse split /\./, $_[0];
165 }
166
167 foreach my $src (sort { news_name_sortkey($a) cmp news_name_sortkey($b) }
168                  <$SELF/data/news/*.rrd>) {
169     my $site= $src;
170     $site =~ s,\.rrd$,, or next;
171     $site =~ s,.*/,,;
172     $site =~ s,_(in|out)$,,;
173     my $inout= $1;
174     $site =~ s/^([-.0-9a-z]+)_//;
175     my $us= $1; # all very well but we ignore it
176     my $newsite= $news_name_map{$site,$inout};
177     $site= $newsite if defined $newsite;
178     next if $site eq '-';
179     graph_of_group("News", $site, $inout,
180           {
181                 Units => '[art/s]',
182                 TimeRanges => [ map { $_*86400 } qw(1 7 31), 366, 366*3 ]
183             }, $inout eq 'out' ?
184           [
185            (map { "DEF:$_=$src:$_:AVERAGE" }
186                 qw(missing deferred unwanted accepted rejected body_missing)),
187            "AREA:accepted#00f:ok",
188            "AREA:body_missing#ff0:miss:STACK",
189            "AREA:rejected#f00:rej:STACK",
190            "AREA:unwanted#aaa:unw:STACK",
191            "AREA:deferred#ddd:defer:STACK",
192            ] :
193           [
194            (map { "DEF:$_=$src:$_:AVERAGE" }
195                 qw(accepted refused rejected duplicate)),
196            (map { ("DEF:bytes_$_=$src:${_}_size:AVERAGE",
197                    "CDEF:kb_$_=bytes_$_,1024,/")
198               } qw(accepted duplicate)),
199            "AREA:accepted#00f:ok:STACK",
200            "AREA:rejected#f00:rej:STACK",
201            "AREA:duplicate#000:dupe:STACK",
202            "AREA:refused#aaa:unw:STACK",
203            "CDEF:kb_accepted_smooth=kb_accepted,<interval/60>,TREND",
204            "LINE:kb_duplicate#ff0:kb dupe",
205            "LINE:kb_accepted_smooth#008:~kb",
206            ]);
207 }
208
209 }
210
211 #---------- right, that was the initialisation ----------
212
213 our $self= url(-relative=>1);
214
215 if (param('debug')) {
216     print "Content-Type: text/plain\n\n";
217 }
218
219 our @navsettings;
220
221 @navsettings= ();
222
223 sub navsetting ($) {
224     my ($nav) = @_;
225     my $var= $nav->{Variable};
226     $$var= param($nav->{Param});
227     $$var= $nav->{Default} if !defined $$var;
228     die $nav->{Param} unless grep { $_ eq $$var } @{ $nav->{Values} };
229     push @navsettings, $nav;
230 }
231
232 our $section;
233
234 navsetting({
235     Desc => 'Section',
236     Param => 'section',
237     Variable => \$section,
238     Default => $sections[0],
239     Values => [@sections],
240     Show => sub { return $_[0]; }
241 });
242
243
244 sub num_param ($$$$) {
245     my ($param,$def,$min,$max) = @_;
246     my $v= param($param);
247     return $def if !defined $v;
248     $v =~ m/^([1-9]\d{0,8})$/ or die;
249     $v= $1;
250     die unless $v >= $min && $v <= $max;
251     return $v + 0;
252 }
253
254 our $group= param('graph');
255
256 our $elem= param('elem');
257 if (defined $elem) {
258     my $g= $graphs{$section,$group,$elem};
259     die unless $g;
260
261     my $width= num_param('w',370,100,1600);
262     my $height= num_param('h',200,100,1600);
263
264     my $sloth= param('sloth');
265     die unless defined $sloth;
266     $sloth =~ m/^(\d+)$/ or die;
267     $sloth= $1+0;
268     my $end= $g->{TimeRanges}[$sloth];
269     die unless defined $end;
270
271     my $cacheid= "$section!$group!$elem!$sloth!$width!$height";
272     my $cachepath= "cache/$cacheid.png";
273
274     my @args= @{ $g->{Args} };
275     s,\<interval/(\d+)\>, $end/$1 ,ge foreach @args;
276     unshift @args, qw(--end now --start), "end-${end}s";
277     
278     my $title= $group;
279     if (length $elem) { $title.= " $elem"; }
280
281     $title .= " $g->{Units}" if $g->{Units};
282     unshift @args, '-t', $title, '-w',$width, '-h',$height;
283     unshift @args, qw(-a PNG --full-size-mode);
284
285     if (param('debug')) {
286         print((join "\n",@args),"\n"); exit 0;
287     }
288
289 #print STDERR "||| ",(join ' ', map { "'$_'" } @args)." |||\n";
290     exec(qw(sh -ec), <<'END', 'x', $cachepath, @args);
291         p="$1"; shift
292         rrdtool graph "$p" --lazy "$@" >/dev/null
293         printf "Content-Type: image/png\n\n"
294         exec cat "$p"
295 END
296     die $!;
297 }
298
299 sub start_page ($) {
300     my ($title) = @_;
301     print header(), start_html($title);
302     my $outerdelim= '';
303     foreach my $nav (@navsettings) {
304         print $outerdelim;
305         print $nav->{Desc}, ": ";
306         my $delim= '';
307         my $current= $nav->{Variable};  $current= $$current;
308         foreach my $couldbe (@{ $nav->{Values} }) {
309             print $delim;
310             my $show= $nav->{Show}($couldbe);
311             if ($couldbe eq $current) {
312                 print "<b>$show</b>";
313             } else {
314                 my $u= $self;
315                 my $delim2= '?';
316                 foreach my $nav2 (@navsettings) {
317                     my $current2= $nav2->{Variable};  $current2= $$current2;
318                     $current2= $couldbe if $nav2->{Param} eq $nav->{Param};
319                     next if $current2 eq $nav2->{Default};
320                     $u .= $delim2;  $u .= "$nav2->{Param}=$current2";
321                     $delim2= '&';
322                 }
323                 print a({href=>$u}, $show);
324             }
325             $delim= ' | ';
326         }
327         $outerdelim= "<br>\n";
328     }
329     print "\n";
330
331     print h1("$title");
332 }
333
334 our $detail= param('detail');
335 if ($detail) {
336     my $elems= $group_elems{$section,$detail};
337     die unless $elems;
338     start_page("$detail graphs");
339     foreach my $tsloth (0..5) {
340         foreach my $elem (@$elems) {
341             my $g= $graphs{$section,$detail,$elem};
342             die unless $g;
343             next if $tsloth >= @{ $g->{TimeRanges} };
344             my $imgurl= "$self?graph=$detail&section=$section".
345                 "&sloth=$tsloth&elem=$elem";
346             print a({href=>"$imgurl&w=780&h=800"},
347                     img({src=>$imgurl, alt=>''}));
348         }
349     }
350     print end_html();
351     exit 0;
352 }
353
354 our $sloth;
355
356 navsetting({
357     Desc => 'Time interval',
358     Param => 'sloth',
359     Variable => \$sloth,
360     Default => 1,
361     Values => [0..3],
362     Show => sub {
363         my ($sl) = @_;
364         return ('Narrower', 'Normal', 'Wider', 'Extra wide')[$sl];
365     }
366 });
367
368 if (param('debug')) {
369     use Data::Dumper;
370     print Dumper(\%graphs);
371     exit 0;
372 }
373
374 start_page("$section graphs");
375
376 foreach my $group (@{ $section_groups{$section} }) {
377     print a({href=>"$self?detail=$group&section=$section"});
378     my $imgurl= "$self?graph=$group&section=$section";
379     print "<span style=\"white-space:nowrap\">";
380     my $elems= $group_elems{$section,$group};
381     foreach my $elem (@$elems) {
382         my $g= $graphs{$section,$group,$elem};
383         print img({src=>"$imgurl&elem=$elem&sloth=".($sloth + $g->{Slower}),
384                    alt=>''});
385     }
386     print "</span>";
387     print "</a>\n";
388 }
389