2 # Copyright (c) 2006-2010 Florian Forster <octo at collectd.org>
3 # Copyright (c) 2006-2008 Sebastian Harl <sh at tokkee.org>
4 # Copyright (c) 2008 Mirko Buffoni <briareos at eswat.org>
6 # Permission is hereby granted, free of charge, to any person obtaining a copy
7 # of this software and associated documentation files (the "Software"), to deal
8 # in the Software without restriction, including without limitation the rights
9 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 # copies of the Software, and to permit persons to whom the Software is
11 # furnished to do so, subject to the following conditions:
13 # The above copyright notice and this permission notice shall be included in
14 # all copies or substantial portions of the Software.
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 use Carp (qw(cluck confess));
29 use CGI::Carp ('fatalsToBrowser');
30 use HTML::Entities ('encode_entities');
31 use URI::Escape ('uri_escape');
35 our $Config = "/etc/collection.conf";
37 our @DontShowTypes = ();
49 our @RRDDefaultArgs = ('-w', '400');
54 our $MetaGraphDefs = {};
55 load_graph_definitions ();
57 for (qw(action host plugin plugin_instance type type_instance timespan))
59 $Args->{$_} = param ($_);
67 open ($fh, "< $Config") or confess ("open ($Config): $!");
68 while (my $line = <$fh>)
72 next if ($line =~ m/^\s*#/);
73 next if ($line =~ m/^\s*$/);
78 if ($line =~ m/^([A-Za-z]+):\s*"((?:[^"\\]+|\\.)*)"$/)
80 $key = lc ($1); $value = $2;
81 $value =~ s/\\(.)/$1/g;
83 elsif ($line =~ m/([A-Za-z]+):\s*([0-9]+)$/)
85 $key = lc ($1); $value = 0 + $2;
89 print STDERR "Cannot parse line: $line\n";
93 if ($key eq 'datadir')
96 push (@DataDirs, $value);
98 elsif ($key eq 'libdir')
103 elsif ($key eq 'dontshowtype')
105 push (@DontShowTypes, $value);
109 print STDERR "Unknown key: $key\n";
117 if ($Args->{'action'} && ($Args->{'action'} =~ m/^(overview|show_host|show_plugin|show_type|show_graph)$/))
119 $Args->{'action'} = $1;
123 $Args->{'action'} = 'overview';
126 if ($Args->{'host'} && ($Args->{'host'} =~ m#/#))
128 delete ($Args->{'host'});
131 if ($Args->{'plugin'} && ($Args->{'plugin'} =~ m#/#))
133 delete ($Args->{'plugin'});
136 if ($Args->{'type'} && ($Args->{'type'} =~ m#/#))
138 delete ($Args->{'type'});
141 if (!$Args->{'plugin'} || ($Args->{'plugin_instance'}
142 && ($Args->{'plugin_instance'} =~ m#/#)))
144 delete ($Args->{'plugin_instance'});
147 if (!$Args->{'type'} || ($Args->{'type_instance'}
148 && ($Args->{'type_instance'} =~ m#/#)))
150 delete ($Args->{'type_instance'});
153 if (defined ($Args->{'timespan'})
154 && ($Args->{'timespan'} =~ m/^(hour|day|week|month|year)$/))
156 $Args->{'timespan'} = $1;
160 $Args->{'timespan'} = 'day';
168 if (defined ($hosts))
170 return (keys %$hosts);
175 for (my $i = 0; $i < @DataDirs; $i++)
180 opendir ($dh, $DataDirs[$i]) or next;
181 @tmp = grep { ($_ !~ m/^\./) && (-d $DataDirs[$i] . '/' . $_) } (readdir ($dh));
184 $hosts->{$_} = 1 for (@tmp);
187 return (keys %$hosts);
193 my %all_hosts = map { $_ => 1 } (_find_hosts ());
194 my @selected_hosts = ();
197 if (defined ($all_hosts{$_}))
199 push (@selected_hosts, "$_");
202 return (@selected_hosts);
205 sub _get_param_timespan
207 my $timespan = param ('timespan');
210 $timespan = lc ($timespan);
212 if (!defined ($ValidTimespan->{$timespan}))
218 } # _get_param_timespan
225 for (my $i = 0; $i < @DataDirs; $i++)
227 my $dir = $DataDirs[$i] . "/$host";
231 opendir ($dh, $dir) or next;
232 @tmp = grep { ($_ !~ m/^\./) && (-d "$dir/$_") } (readdir ($dh));
237 my ($plugin, $instance) = split (m/-/, $_, 2);
238 $plugins{$plugin} = [] if (!exists $plugins{$plugin});
239 push (@{$plugins{$plugin}}, $instance);
250 my $plugin_instance = shift;
253 for (my $i = 0; $i < @DataDirs; $i++)
255 my $dir = $DataDirs[$i] . "/$host/$plugin" . (defined ($plugin_instance) ? "-$plugin_instance" : '');
259 opendir ($dh, $dir) or next;
260 @tmp = grep { ($_ !~ m/^\./) && ($_ =~ m/\.rrd$/i) && (-f "$dir/$_") } (readdir ($dh));
266 $name =~ s/\.rrd$//i;
267 my ($type, $instance) = split (m/-/, $name, 2);
268 if (grep { $_ eq $type } @DontShowTypes) { next; }
269 $types{$type} = [] if (!$types{$type});
270 push (@{$types{$type}}, $instance) if (defined ($instance));
277 sub _find_files_for_host
282 my %plugins = _find_plugins ($host);
286 my $plugin_instances = $plugins{$plugin};
288 if (!$plugin_instances || !@$plugin_instances)
290 $plugin_instances = ['-'];
293 $ret->{$plugin} = {};
295 for (@$plugin_instances)
297 my $plugin_instance = defined ($_) ? $_ : '-';
298 my %types = _find_types ($host, $plugin,
299 ($plugin_instance ne '-')
303 $ret->{$plugin}{$plugin_instance} = {};
308 my $type_instances = $types{$type};
310 $ret->{$plugin}{$plugin_instance}{$type} = {};
312 for (@$type_instances)
314 $ret->{$plugin}{$plugin_instance}{$type}{$_} = 1;
317 if (!@$type_instances)
319 $ret->{$plugin}{$plugin_instance}{$type}{'-'} = 1;
321 } # for (keys %types)
322 } # for (@$plugin_instances)
323 } # for (keys %plugins)
326 } # _find_files_for_host
328 sub _find_files_for_hosts
331 my $all_plugins = {};
333 for (my $i = 0; $i < @hosts; $i++)
335 my $tmp = _find_files_for_host ($hosts[$i]);
336 _files_union ($all_plugins, $tmp);
339 return ($all_plugins);
340 } # _find_files_for_hosts
350 $dest->{$plugin} ||= {};
352 for (keys %{$src->{$plugin}})
355 $dest->{$plugin}{$pinst} ||= {};
357 for (keys %{$src->{$plugin}{$pinst}})
360 $dest->{$plugin}{$pinst}{$type} ||= {};
362 for (keys %{$src->{$plugin}{$pinst}{$type}})
365 $dest->{$plugin}{$pinst}{$type}{$tinst} = 1;
372 sub _files_plugin_inst_count
379 if (exists ($MetaGraphDefs->{$_}))
385 $i = $i + keys %{$src->{$_}};
389 } # _files_plugin_count
393 my @hosts = _find_hosts ();
394 @hosts = sort (@hosts);
397 for (my $i = 0; $i < @hosts; $i++)
399 my $host_html = encode_entities ($hosts[$i]);
400 my $host_url = uri_escape ($hosts[$i]);
402 print qq( <li><a href="${\script_name ()}?action=show_host;host=$host_url">$host_html</a></li>\n);
410 if ($color =~ m/([0-9A-Fa-f][0-9A-Fa-f])([0-9A-Fa-f][0-9A-Fa-f])([0-9A-Fa-f][0-9A-Fa-f])/)
412 return ([hex ($1) / 255.0, hex ($2) / 255.0, hex ($3) / 255.0]);
419 confess ("Wrong number of arguments") if (@_ != 1);
420 return (sprintf ('%02hx%02hx%02hx', map { int (255.0 * $_) } @{$_[0]}));
423 sub _get_random_color
425 my ($r, $g, $b) = (rand (), rand ());
431 $min = 1.0 - ($r + $g);
435 $max = 2.0 - ($r + $g);
438 $b = $min + (rand () * ($max - $min));
440 return ([$r, $g, $b]);
441 } # _get_random_color
445 my $instances = shift;
446 my $num = scalar @$instances;
449 for (my $i = 0; $i < $num; $i++)
451 my $pos = 6 * $i / $num;
494 $color = sprintf ("%02x%02x%02x", $red, $green, $blue);
495 $ret->{$instances->[$i]} = $color;
506 my $ret = [undef, undef, undef];
508 $opts{'background'} ||= [1.0, 1.0, 1.0];
509 $opts{'alpha'} ||= 0.25;
511 if (!ref ($opts{'background'}))
513 $opts{'background'} = _string_to_color ($opts{'background'})
514 or confess ("Cannot parse background color " . $opts{'background'});
516 $bg = $opts{'background'};
518 for (my $i = 0; $i < 3; $i++)
520 $ret->[$i] = ($opts{'alpha'} * $fg->[$i])
521 + ((1.0 - $opts{'alpha'}) * $bg->[$i]);
527 sub _custom_sort_arrayref
529 my $array_ref = shift;
530 my $array_sort = shift;
531 my $unknown_first = shift || 0;
533 my %elements = map { $_ => 1 } (@$array_ref);
534 splice (@$array_ref, 0);
538 next if (!exists ($elements{$_}));
539 push (@$array_ref, $_);
540 delete ($elements{$_});
542 if ($unknown_first) {
543 unshift (@$array_ref, sort (keys %elements));
546 push (@$array_ref, sort (keys %elements));
548 } # _custom_sort_arrayref
552 my @hosts = _get_param_host ();
553 @hosts = sort (@hosts);
555 my $timespan = _get_param_timespan ();
556 my $all_plugins = _find_files_for_hosts (@hosts);
558 my $url_prefix = script_name () . '?action=show_plugin'
559 . join ('', map { ';host=' . uri_escape ($_) } (@hosts))
560 . ';timespan=' . uri_escape ($timespan);
562 print qq( <div><a href="${\script_name ()}?action=overview">Back to list of hosts</a></div>\n);
564 print " <p>Available plugins:</p>\n"
566 for (sort (keys %$all_plugins))
569 my $plugin_html = encode_entities ($plugin);
570 my $url_plugin = $url_prefix . ';plugin=' . uri_escape ($plugin);
571 print qq( <li><a href="$url_plugin">$plugin_html</a></li>\n);
576 sub action_show_plugin
578 my @hosts = _get_param_host ();
580 my $plugin_instance = shift;
581 my $timespan = _get_param_timespan ();
583 my $hosts_url = join (';', map { 'host=' . uri_escape ($_) } (@hosts));
584 my $url_prefix = script_name () . "?$hosts_url";
586 my $all_plugins = {};
587 my $plugins_per_host = {};
588 my $selected_plugins = {};
590 for (my $i = 0; $i < @hosts; $i++)
592 $plugins_per_host->{$hosts[$i]} = _find_files_for_host ($hosts[$i]);
593 _files_union ($all_plugins, $plugins_per_host->{$hosts[$i]});
596 for (param ('plugin'))
598 if (defined ($all_plugins->{$_}))
600 $selected_plugins->{$_} = 1;
604 print qq( <div><a href="${\script_name ()}?action=show_host;$hosts_url">Back to list of plugins</a></div>\n);
608 <table class="graphs">
614 print "\t<th>", encode_entities ($_), "</th>\n";
618 for (sort (keys %$selected_plugins))
621 my $plugin_html = encode_entities ($plugin);
622 my $plugin_url = "$url_prefix;plugin=" . uri_escape ($plugin);
623 my $all_pinst = $all_plugins->{$plugin};
625 for (sort (keys %$all_pinst))
629 my $pinst_url = $plugin_url;
633 $pinst_html = encode_entities ($pinst);
634 $pinst_url .= ';plugin_instance=' . uri_escape ($pinst);
637 my $files_printed = 0;
638 my $files_num = _files_plugin_inst_count ($all_pinst->{$pinst});
643 my $rowspan = ($files_num == 1) ? '' : qq( rowspan="$files_num");
645 for (sort (keys %{$all_plugins->{$plugin}{$pinst}}))
648 my $type_html = encode_entities ($type);
649 my $type_url = "$pinst_url;type=" . uri_escape ($type);
651 if ($files_printed == 0)
653 my $title = $plugin_html;
656 $title .= " ($pinst_html)";
659 print "\t<td$rowspan>$title</td>\n";
662 if (exists ($MetaGraphDefs->{$type}))
664 my $graph_url = script_name () . '?action=show_graph'
665 . ';plugin=' . uri_escape ($plugin)
666 . ';type=' . uri_escape ($type)
667 . ';timespan=' . uri_escape ($timespan);
670 $graph_url .= ';plugin_instance=' . uri_escape ($pinst);
673 if ($files_printed != 0)
681 my $host_graph_url = $graph_url . ';host=' . uri_escape ($host);
684 if (exists $plugins_per_host->{$host}{$plugin}{$pinst}{$type})
686 print qq(<img src="$host_graph_url" />);
687 #print encode_entities (qq(<img src="${\script_name ()}?action=show_graph;host=$host_esc;$param_plugin;$param_type;timespan=$timespan" />));
690 } # for (my $k = 0; $k < @hosts; $k++)
696 } # if (exists ($MetaGraphDefs->{$type}))
698 for (sort (keys %{$all_plugins->{$plugin}{$pinst}{$type}}))
701 my $tinst_esc = encode_entities ($tinst);
702 my $graph_url = script_name () . '?action=show_graph'
703 . ';plugin=' . uri_escape ($plugin)
704 . ';type=' . uri_escape ($type)
705 . ';timespan=' . uri_escape ($timespan);
708 $graph_url .= ';plugin_instance=' . uri_escape ($pinst);
712 $graph_url .= ';type_instance=' . uri_escape ($tinst);
715 if ($files_printed != 0)
720 for (my $k = 0; $k < @hosts; $k++)
722 my $host = $hosts[$k];
723 my $host_graph_url = $graph_url . ';host=' . uri_escape ($host);
726 if ($plugins_per_host->{$host}{$plugin}{$pinst}{$type}{$tinst})
728 print qq(<img src="$host_graph_url" />);
729 #print encode_entities (qq(<img src="${\script_name ()}?action=show_graph;host=$host_esc;$param_plugin;$param_type;timespan=$timespan" />));
732 } # for (my $k = 0; $k < @hosts; $k++)
742 } # action_show_plugin
748 my $plugin_instance = shift;
750 my $type_instance = shift;
752 my $host_url = uri_escape ($host);
753 my $plugin_url = uri_escape ($plugin);
754 my $plugin_html = encode_entities ($plugin);
755 my $plugin_instance_url = defined ($plugin_instance) ? uri_escape ($plugin_instance) : undef;
756 my $type_url = uri_escape ($type);
757 my $type_instance_url = defined ($type_instance) ? uri_escape ($type_instance) : undef;
759 my $url_prefix = script_name () . "?action=show_plugin;host=$host_url;plugin=$plugin_url";
760 $url_prefix .= ";plugin_instance=$plugin_instance_url" if (defined ($plugin_instance));
762 print qq( <div><a href="$url_prefix">Back to plugin "$plugin_html"</a></div>\n);
764 $url_prefix = script_name () . "?action=show_graph;host=$host_url;plugin=$plugin_url";
765 $url_prefix .= ";plugin_instance=$plugin_instance_url" if (defined ($plugin_instance));
766 $url_prefix .= ";type=$type_url";
767 $url_prefix .= ";type_instance=$type_instance_url" if (defined ($type_instance));
769 for (qw(hour day week month year))
773 print qq# <div><img src="$url_prefix;timespan=$timespan" /></div>\n#;
777 sub action_show_graph
781 my $plugin_instance = shift;
783 my $type_instance = shift;
787 my %times = (hour => -3600, day => -86400, week => 7 * -86400, month => 31 * -86400, year => 366 * -86400);
788 my $start_time = $times{$Args->{'timespan'}} || -86400;
790 #print STDERR Data::Dumper->Dump ([$Args], ['Args']);
793 if (exists ($MetaGraphDefs->{$type}))
795 my %types = _find_types ($host, $plugin, $plugin_instance);
796 return $MetaGraphDefs->{$type}->($host, $plugin, $plugin_instance, $type, $types{$type});
799 return if (!defined ($GraphDefs->{$type}));
800 @rrd_args = @{$GraphDefs->{$type}};
802 $title = "$host/$plugin" . (defined ($plugin_instance) ? "-$plugin_instance" : '')
803 . "/$type" . (defined ($type_instance) ? "-$type_instance" : '');
805 for (my $i = 0; $i < @DataDirs; $i++)
807 my $file = $DataDirs[$i] . "/$title.rrd";
811 s/{file}/$file/ for (@rrd_args);
813 RRDs::graph ('-', '-a', 'PNG', '-s', $start_time, '-t', $title, @RRDDefaultArgs, @rrd_args);
814 if (my $err = RRDs::error ())
816 die ("RRDs::graph: $err");
819 } # action_show_graph
823 my @hosts = _find_hosts ();
824 @hosts = sort (@hosts);
826 my %selected_hosts = map { $_ => 1 } (_get_param_host ());
827 my $timespan_selected = _get_param_timespan ();
830 <form action="${\script_name ()}" method="get">
832 <legend>Selector</legend>
833 <select name="host" multiple="multiple" size="10">
835 for (my $i = 0; $i < @hosts; $i++)
837 my $host = encode_entities ($hosts[$i]);
838 my $selected = defined ($selected_hosts{$hosts[$i]}) ? ' selected="selected"' : '';
839 print qq(\t <option value="$host"$selected>$host</option>\n);
841 print "\t</select>\n";
843 if (keys %selected_hosts)
845 my $all_plugins = _find_files_for_hosts (keys %selected_hosts);
846 my %selected_plugins = map { $_ => 1 } (param ('plugin'));
848 print qq(\t<select name="plugin" multiple="multiple" size="10">\n);
849 for (sort (keys %$all_plugins))
852 my $plugin_html = encode_entities ($plugin);
853 my $selected = (defined ($selected_plugins{$plugin})
854 ? ' selected="selected"' : '');
855 print qq(\t <option value="$plugin_html"$selected>$plugin</option>\n);
858 } # if (keys %selected_hosts)
860 print qq(\t<select name="timespan">\n);
861 for (qw(Hour Day Week Month Year))
863 my $timespan_uc = $_;
864 my $timespan_lc = lc ($_);
865 my $selected = ($timespan_selected eq $timespan_lc)
866 ? ' selected="selected"' : '';
867 print qq(\t <option value="$timespan_lc"$selected>$timespan_uc</option>\n);
871 <input type="submit" name="button" value="Ok" />
880 Content-Type: application/xhtml+xml; charset=utf-8
881 Cache-Control: no-cache
883 <?xml version="1.0" encoding="utf-8"?>
884 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
885 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
887 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
889 <title>collection.cgi, Version 2</title>
890 <style type="text/css">
897 border-collapse: collapse;
902 border: 1px solid black;
926 if (defined ($Args->{'host'})
927 && defined ($Args->{'plugin'})
928 && defined ($Args->{'type'})
929 && ($Args->{'action'} eq 'show_graph'))
932 print STDOUT header (-Content_Type => 'image/png');
933 action_show_graph ($Args->{'host'},
934 $Args->{'plugin'}, $Args->{'plugin_instance'},
935 $Args->{'type'}, $Args->{'type_instance'});
941 if (!$Args->{'host'})
945 elsif (!$Args->{'plugin'})
947 action_show_host ($Args->{'host'});
949 elsif (!$Args->{'type'})
951 action_show_plugin ($Args->{'plugin'}, $Args->{'plugin_instance'});
955 action_show_type ($Args->{'host'},
956 $Args->{'plugin'}, $Args->{'plugin_instance'},
957 $Args->{'type'}, $Args->{'type_instance'});
965 sub load_graph_definitions
967 my $Canvas = 'FFFFFF';
969 my $FullRed = 'FF0000';
970 my $FullGreen = '00E000';
971 my $FullBlue = '0000FF';
972 my $FullYellow = 'F0A000';
973 my $FullCyan = '00A0FF';
974 my $FullMagenta= 'A000FF';
976 my $HalfRed = 'F7B7B7';
977 my $HalfGreen = 'B7EFB7';
978 my $HalfBlue = 'B7B7F7';
979 my $HalfYellow = 'F3DFB7';
980 my $HalfCyan = 'B7DFF7';
981 my $HalfMagenta= 'DFB7F7';
983 my $HalfBlueGreen = '89B3C9';
987 apache_bytes => ['DEF:min_raw={file}:value:MIN',
988 'DEF:avg_raw={file}:value:AVERAGE',
989 'DEF:max_raw={file}:value:MAX',
990 'CDEF:min=min_raw,8,*',
991 'CDEF:avg=avg_raw,8,*',
992 'CDEF:max=max_raw,8,*',
993 'CDEF:mytime=avg_raw,TIME,TIME,IF',
994 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
995 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
996 'CDEF:avg_sample=avg_raw,UN,0,avg_raw,IF,sample_len,*',
997 'CDEF:avg_sum=PREV,UN,0,PREV,IF,avg_sample,+',
998 "AREA:avg#$HalfBlue",
999 "LINE1:avg#$FullBlue:Bit/s",
1000 'GPRINT:min:MIN:%5.1lf%s Min,',
1001 'GPRINT:avg:AVERAGE:%5.1lf%s Avg,',
1002 'GPRINT:max:MAX:%5.1lf%s Max,',
1003 'GPRINT:avg:LAST:%5.1lf%s Last',
1004 'GPRINT:avg_sum:LAST:(ca. %5.1lf%sB Total)\l'
1006 apache_connections => ['DEF:min={file}:value:MIN',
1007 'DEF:avg={file}:value:AVERAGE',
1008 'DEF:max={file}:value:MAX',
1009 "AREA:max#$HalfBlue",
1011 "LINE1:avg#$FullBlue:Connections",
1012 'GPRINT:min:MIN:%6.2lf Min,',
1013 'GPRINT:avg:AVERAGE:%6.2lf Avg,',
1014 'GPRINT:max:MAX:%6.2lf Max,',
1015 'GPRINT:avg:LAST:%6.2lf Last'
1017 apache_idle_workers => ['DEF:min={file}:value:MIN',
1018 'DEF:avg={file}:value:AVERAGE',
1019 'DEF:max={file}:value:MAX',
1020 "AREA:max#$HalfBlue",
1022 "LINE1:avg#$FullBlue:Idle Workers",
1023 'GPRINT:min:MIN:%6.2lf Min,',
1024 'GPRINT:avg:AVERAGE:%6.2lf Avg,',
1025 'GPRINT:max:MAX:%6.2lf Max,',
1026 'GPRINT:avg:LAST:%6.2lf Last'
1028 apache_requests => ['DEF:min={file}:value:MIN',
1029 'DEF:avg={file}:value:AVERAGE',
1030 'DEF:max={file}:value:MAX',
1031 "AREA:max#$HalfBlue",
1033 "LINE1:avg#$FullBlue:Requests/s",
1034 'GPRINT:min:MIN:%6.2lf Min,',
1035 'GPRINT:avg:AVERAGE:%6.2lf Avg,',
1036 'GPRINT:max:MAX:%6.2lf Max,',
1037 'GPRINT:avg:LAST:%6.2lf Last'
1039 apache_scoreboard => ['DEF:min={file}:value:MIN',
1040 'DEF:avg={file}:value:AVERAGE',
1041 'DEF:max={file}:value:MAX',
1042 "AREA:max#$HalfBlue",
1044 "LINE1:avg#$FullBlue:Processes",
1045 'GPRINT:min:MIN:%6.2lf Min,',
1046 'GPRINT:avg:AVERAGE:%6.2lf Avg,',
1047 'GPRINT:max:MAX:%6.2lf Max,',
1048 'GPRINT:avg:LAST:%6.2lf Last'
1050 bitrate => ['-v', 'Bits/s',
1051 'DEF:avg={file}:value:AVERAGE',
1052 'DEF:min={file}:value:MIN',
1053 'DEF:max={file}:value:MAX',
1054 "AREA:max#$HalfBlue",
1056 "LINE1:avg#$FullBlue:Bits/s",
1057 'GPRINT:min:MIN:%5.1lf%s Min,',
1058 'GPRINT:avg:AVERAGE:%5.1lf%s Average,',
1059 'GPRINT:max:MAX:%5.1lf%s Max,',
1060 'GPRINT:avg:LAST:%5.1lf%s Last\l'
1062 charge => ['-v', 'Ah',
1063 'DEF:avg={file}:value:AVERAGE',
1064 'DEF:min={file}:value:MIN',
1065 'DEF:max={file}:value:MAX',
1066 "AREA:max#$HalfBlue",
1068 "LINE1:avg#$FullBlue:Charge",
1069 'GPRINT:min:MIN:%5.1lf%sAh Min,',
1070 'GPRINT:avg:AVERAGE:%5.1lf%sAh Avg,',
1071 'GPRINT:max:MAX:%5.1lf%sAh Max,',
1072 'GPRINT:avg:LAST:%5.1lf%sAh Last\l'
1074 connections => ['-v', 'Connections',
1075 'DEF:avg={file}:value:AVERAGE',
1076 'DEF:min={file}:value:MIN',
1077 'DEF:max={file}:value:MAX',
1078 "AREA:max#$HalfBlue",
1080 "LINE1:avg#$FullBlue:Connections",
1081 'GPRINT:min:MIN:%4.1lf Min,',
1082 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1083 'GPRINT:max:MAX:%4.1lf Max,',
1084 'GPRINT:avg:LAST:%4.1lf Last\l'
1086 cpu => ['-v', 'CPU load',
1087 'DEF:avg={file}:value:AVERAGE',
1088 'DEF:min={file}:value:MIN',
1089 'DEF:max={file}:value:MAX',
1090 "AREA:max#$HalfBlue",
1092 "LINE1:avg#$FullBlue:Percent",
1093 'GPRINT:min:MIN:%6.2lf%% Min,',
1094 'GPRINT:avg:AVERAGE:%6.2lf%% Avg,',
1095 'GPRINT:max:MAX:%6.2lf%% Max,',
1096 'GPRINT:avg:LAST:%6.2lf%% Last\l'
1098 current => ['-v', 'Ampere',
1099 'DEF:avg={file}:value:AVERAGE',
1100 'DEF:min={file}:value:MIN',
1101 'DEF:max={file}:value:MAX',
1102 "AREA:max#$HalfBlue",
1104 "LINE1:avg#$FullBlue:Current",
1105 'GPRINT:min:MIN:%5.1lf%sA Min,',
1106 'GPRINT:avg:AVERAGE:%5.1lf%sA Avg,',
1107 'GPRINT:max:MAX:%5.1lf%sA Max,',
1108 'GPRINT:avg:LAST:%5.1lf%sA Last\l'
1110 df => ['-v', 'Percent', '-l', '0',
1111 'DEF:free_avg={file}:free:AVERAGE',
1112 'DEF:free_min={file}:free:MIN',
1113 'DEF:free_max={file}:free:MAX',
1114 'DEF:used_avg={file}:used:AVERAGE',
1115 'DEF:used_min={file}:used:MIN',
1116 'DEF:used_max={file}:used:MAX',
1117 'CDEF:total=free_avg,used_avg,+',
1118 'CDEF:free_pct=100,free_avg,*,total,/',
1119 'CDEF:used_pct=100,used_avg,*,total,/',
1120 'CDEF:free_acc=free_pct,used_pct,+',
1121 'CDEF:used_acc=used_pct',
1122 "AREA:free_acc#$HalfGreen",
1123 "AREA:used_acc#$HalfRed",
1124 "LINE1:free_acc#$FullGreen:Free",
1125 'GPRINT:free_min:MIN:%5.1lf%sB Min,',
1126 'GPRINT:free_avg:AVERAGE:%5.1lf%sB Avg,',
1127 'GPRINT:free_max:MAX:%5.1lf%sB Max,',
1128 'GPRINT:free_avg:LAST:%5.1lf%sB Last\l',
1129 "LINE1:used_acc#$FullRed:Used",
1130 'GPRINT:used_min:MIN:%5.1lf%sB Min,',
1131 'GPRINT:used_avg:AVERAGE:%5.1lf%sB Avg,',
1132 'GPRINT:used_max:MAX:%5.1lf%sB Max,',
1133 'GPRINT:used_avg:LAST:%5.1lf%sB Last\l'
1136 'DEF:rtime_avg={file}:rtime:AVERAGE',
1137 'DEF:rtime_min={file}:rtime:MIN',
1138 'DEF:rtime_max={file}:rtime:MAX',
1139 'DEF:wtime_avg={file}:wtime:AVERAGE',
1140 'DEF:wtime_min={file}:wtime:MIN',
1141 'DEF:wtime_max={file}:wtime:MAX',
1142 'CDEF:rtime_avg_ms=rtime_avg,1000,/',
1143 'CDEF:rtime_min_ms=rtime_min,1000,/',
1144 'CDEF:rtime_max_ms=rtime_max,1000,/',
1145 'CDEF:wtime_avg_ms=wtime_avg,1000,/',
1146 'CDEF:wtime_min_ms=wtime_min,1000,/',
1147 'CDEF:wtime_max_ms=wtime_max,1000,/',
1148 'CDEF:total_avg_ms=rtime_avg_ms,wtime_avg_ms,+',
1149 'CDEF:total_min_ms=rtime_min_ms,wtime_min_ms,+',
1150 'CDEF:total_max_ms=rtime_max_ms,wtime_max_ms,+',
1151 "AREA:total_max_ms#$HalfRed",
1152 "AREA:total_min_ms#$Canvas",
1153 "LINE1:wtime_avg_ms#$FullGreen:Write",
1154 'GPRINT:wtime_min_ms:MIN:%5.1lf%s Min,',
1155 'GPRINT:wtime_avg_ms:AVERAGE:%5.1lf%s Avg,',
1156 'GPRINT:wtime_max_ms:MAX:%5.1lf%s Max,',
1157 'GPRINT:wtime_avg_ms:LAST:%5.1lf%s Last\n',
1158 "LINE1:rtime_avg_ms#$FullBlue:Read ",
1159 'GPRINT:rtime_min_ms:MIN:%5.1lf%s Min,',
1160 'GPRINT:rtime_avg_ms:AVERAGE:%5.1lf%s Avg,',
1161 'GPRINT:rtime_max_ms:MAX:%5.1lf%s Max,',
1162 'GPRINT:rtime_avg_ms:LAST:%5.1lf%s Last\n',
1163 "LINE1:total_avg_ms#$FullRed:Total",
1164 'GPRINT:total_min_ms:MIN:%5.1lf%s Min,',
1165 'GPRINT:total_avg_ms:AVERAGE:%5.1lf%s Avg,',
1166 'GPRINT:total_max_ms:MAX:%5.1lf%s Max,',
1167 'GPRINT:total_avg_ms:LAST:%5.1lf%s Last'
1169 disk_octets => ['-v', 'Bytes/s',
1170 'DEF:out_min={file}:write:MIN',
1171 'DEF:out_avg={file}:write:AVERAGE',
1172 'DEF:out_max={file}:write:MAX',
1173 'DEF:inc_min={file}:read:MIN',
1174 'DEF:inc_avg={file}:read:AVERAGE',
1175 'DEF:inc_max={file}:read:MAX',
1176 'CDEF:overlap=out_avg,inc_avg,GT,inc_avg,out_avg,IF',
1177 'CDEF:mytime=out_avg,TIME,TIME,IF',
1178 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
1179 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
1180 'CDEF:out_avg_sample=out_avg,UN,0,out_avg,IF,sample_len,*',
1181 'CDEF:out_avg_sum=PREV,UN,0,PREV,IF,out_avg_sample,+',
1182 'CDEF:inc_avg_sample=inc_avg,UN,0,inc_avg,IF,sample_len,*',
1183 'CDEF:inc_avg_sum=PREV,UN,0,PREV,IF,inc_avg_sample,+',
1184 "AREA:out_avg#$HalfGreen",
1185 "AREA:inc_avg#$HalfBlue",
1186 "AREA:overlap#$HalfBlueGreen",
1187 "LINE1:out_avg#$FullGreen:Written",
1188 'GPRINT:out_avg:AVERAGE:%5.1lf%s Avg,',
1189 'GPRINT:out_max:MAX:%5.1lf%s Max,',
1190 'GPRINT:out_avg:LAST:%5.1lf%s Last',
1191 'GPRINT:out_avg_sum:LAST:(ca. %5.1lf%sB Total)\l',
1192 "LINE1:inc_avg#$FullBlue:Read ",
1193 'GPRINT:inc_avg:AVERAGE:%5.1lf%s Avg,',
1194 'GPRINT:inc_max:MAX:%5.1lf%s Max,',
1195 'GPRINT:inc_avg:LAST:%5.1lf%s Last',
1196 'GPRINT:inc_avg_sum:LAST:(ca. %5.1lf%sB Total)\l'
1198 disk_merged => ['-v', 'Merged Ops/s',
1199 'DEF:out_min={file}:write:MIN',
1200 'DEF:out_avg={file}:write:AVERAGE',
1201 'DEF:out_max={file}:write:MAX',
1202 'DEF:inc_min={file}:read:MIN',
1203 'DEF:inc_avg={file}:read:AVERAGE',
1204 'DEF:inc_max={file}:read:MAX',
1205 'CDEF:overlap=out_avg,inc_avg,GT,inc_avg,out_avg,IF',
1206 "AREA:out_avg#$HalfGreen",
1207 "AREA:inc_avg#$HalfBlue",
1208 "AREA:overlap#$HalfBlueGreen",
1209 "LINE1:out_avg#$FullGreen:Written",
1210 'GPRINT:out_avg:AVERAGE:%6.2lf Avg,',
1211 'GPRINT:out_max:MAX:%6.2lf Max,',
1212 'GPRINT:out_avg:LAST:%6.2lf Last\l',
1213 "LINE1:inc_avg#$FullBlue:Read ",
1214 'GPRINT:inc_avg:AVERAGE:%6.2lf Avg,',
1215 'GPRINT:inc_max:MAX:%6.2lf Max,',
1216 'GPRINT:inc_avg:LAST:%6.2lf Last\l'
1218 disk_ops => ['-v', 'Ops/s',
1219 'DEF:out_min={file}:write:MIN',
1220 'DEF:out_avg={file}:write:AVERAGE',
1221 'DEF:out_max={file}:write:MAX',
1222 'DEF:inc_min={file}:read:MIN',
1223 'DEF:inc_avg={file}:read:AVERAGE',
1224 'DEF:inc_max={file}:read:MAX',
1225 'CDEF:overlap=out_avg,inc_avg,GT,inc_avg,out_avg,IF',
1226 "AREA:out_avg#$HalfGreen",
1227 "AREA:inc_avg#$HalfBlue",
1228 "AREA:overlap#$HalfBlueGreen",
1229 "LINE1:out_avg#$FullGreen:Written",
1230 'GPRINT:out_avg:AVERAGE:%6.2lf Avg,',
1231 'GPRINT:out_max:MAX:%6.2lf Max,',
1232 'GPRINT:out_avg:LAST:%6.2lf Last\l',
1233 "LINE1:inc_avg#$FullBlue:Read ",
1234 'GPRINT:inc_avg:AVERAGE:%6.2lf Avg,',
1235 'GPRINT:inc_max:MAX:%6.2lf Max,',
1236 'GPRINT:inc_avg:LAST:%6.2lf Last\l'
1238 disk_time => ['-v', 'Seconds/s',
1239 'DEF:out_min_raw={file}:write:MIN',
1240 'DEF:out_avg_raw={file}:write:AVERAGE',
1241 'DEF:out_max_raw={file}:write:MAX',
1242 'DEF:inc_min_raw={file}:read:MIN',
1243 'DEF:inc_avg_raw={file}:read:AVERAGE',
1244 'DEF:inc_max_raw={file}:read:MAX',
1245 'CDEF:out_min=out_min_raw,1000,/',
1246 'CDEF:out_avg=out_avg_raw,1000,/',
1247 'CDEF:out_max=out_max_raw,1000,/',
1248 'CDEF:inc_min=inc_min_raw,1000,/',
1249 'CDEF:inc_avg=inc_avg_raw,1000,/',
1250 'CDEF:inc_max=inc_max_raw,1000,/',
1251 'CDEF:overlap=out_avg,inc_avg,GT,inc_avg,out_avg,IF',
1252 "AREA:out_avg#$HalfGreen",
1253 "AREA:inc_avg#$HalfBlue",
1254 "AREA:overlap#$HalfBlueGreen",
1255 "LINE1:out_avg#$FullGreen:Written",
1256 'GPRINT:out_avg:AVERAGE:%5.1lf%ss Avg,',
1257 'GPRINT:out_max:MAX:%5.1lf%ss Max,',
1258 'GPRINT:out_avg:LAST:%5.1lf%ss Last\l',
1259 "LINE1:inc_avg#$FullBlue:Read ",
1260 'GPRINT:inc_avg:AVERAGE:%5.1lf%ss Avg,',
1261 'GPRINT:inc_max:MAX:%5.1lf%ss Max,',
1262 'GPRINT:inc_avg:LAST:%5.1lf%ss Last\l'
1264 dns_octets => ['DEF:rsp_min_raw={file}:responses:MIN',
1265 'DEF:rsp_avg_raw={file}:responses:AVERAGE',
1266 'DEF:rsp_max_raw={file}:responses:MAX',
1267 'DEF:qry_min_raw={file}:queries:MIN',
1268 'DEF:qry_avg_raw={file}:queries:AVERAGE',
1269 'DEF:qry_max_raw={file}:queries:MAX',
1270 'CDEF:rsp_min=rsp_min_raw,8,*',
1271 'CDEF:rsp_avg=rsp_avg_raw,8,*',
1272 'CDEF:rsp_max=rsp_max_raw,8,*',
1273 'CDEF:qry_min=qry_min_raw,8,*',
1274 'CDEF:qry_avg=qry_avg_raw,8,*',
1275 'CDEF:qry_max=qry_max_raw,8,*',
1276 'CDEF:overlap=rsp_avg,qry_avg,GT,qry_avg,rsp_avg,IF',
1277 'CDEF:mytime=rsp_avg_raw,TIME,TIME,IF',
1278 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
1279 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
1280 'CDEF:rsp_avg_sample=rsp_avg_raw,UN,0,rsp_avg_raw,IF,sample_len,*',
1281 'CDEF:rsp_avg_sum=PREV,UN,0,PREV,IF,rsp_avg_sample,+',
1282 'CDEF:qry_avg_sample=qry_avg_raw,UN,0,qry_avg_raw,IF,sample_len,*',
1283 'CDEF:qry_avg_sum=PREV,UN,0,PREV,IF,qry_avg_sample,+',
1284 "AREA:rsp_avg#$HalfGreen",
1285 "AREA:qry_avg#$HalfBlue",
1286 "AREA:overlap#$HalfBlueGreen",
1287 "LINE1:rsp_avg#$FullGreen:Responses",
1288 'GPRINT:rsp_avg:AVERAGE:%5.1lf%s Avg,',
1289 'GPRINT:rsp_max:MAX:%5.1lf%s Max,',
1290 'GPRINT:rsp_avg:LAST:%5.1lf%s Last',
1291 'GPRINT:rsp_avg_sum:LAST:(ca. %5.1lf%sB Total)\l',
1292 "LINE1:qry_avg#$FullBlue:Queries ",
1293 #'GPRINT:qry_min:MIN:%5.1lf %s Min,',
1294 'GPRINT:qry_avg:AVERAGE:%5.1lf%s Avg,',
1295 'GPRINT:qry_max:MAX:%5.1lf%s Max,',
1296 'GPRINT:qry_avg:LAST:%5.1lf%s Last',
1297 'GPRINT:qry_avg_sum:LAST:(ca. %5.1lf%sB Total)\l'
1300 'DEF:avg={file}:value:AVERAGE',
1301 'DEF:min={file}:value:MIN',
1302 'DEF:max={file}:value:MAX',
1303 "AREA:max#$HalfBlue",
1305 "LINE1:avg#$FullBlue:Queries/s",
1306 'GPRINT:min:MIN:%9.3lf Min,',
1307 'GPRINT:avg:AVERAGE:%9.3lf Average,',
1308 'GPRINT:max:MAX:%9.3lf Max,',
1309 'GPRINT:avg:LAST:%9.3lf Last\l'
1311 email_count => ['-v', 'Mails',
1312 'DEF:avg={file}:value:AVERAGE',
1313 'DEF:min={file}:value:MIN',
1314 'DEF:max={file}:value:MAX',
1315 "AREA:max#$HalfMagenta",
1317 "LINE1:avg#$FullMagenta:Count ",
1318 'GPRINT:min:MIN:%4.1lf Min,',
1319 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1320 'GPRINT:max:MAX:%4.1lf Max,',
1321 'GPRINT:avg:LAST:%4.1lf Last\l'
1323 email_size => ['-v', 'Bytes',
1324 'DEF:avg={file}:value:AVERAGE',
1325 'DEF:min={file}:value:MIN',
1326 'DEF:max={file}:value:MAX',
1327 "AREA:max#$HalfMagenta",
1329 "LINE1:avg#$FullMagenta:Count ",
1330 'GPRINT:min:MIN:%4.1lf Min,',
1331 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1332 'GPRINT:max:MAX:%4.1lf Max,',
1333 'GPRINT:avg:LAST:%4.1lf Last\l'
1335 spam_score => ['-v', 'Score',
1336 'DEF:avg={file}:value:AVERAGE',
1337 'DEF:min={file}:value:MIN',
1338 'DEF:max={file}:value:MAX',
1339 "AREA:max#$HalfBlue",
1341 "LINE1:avg#$FullBlue:Score ",
1342 'GPRINT:min:MIN:%4.1lf Min,',
1343 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1344 'GPRINT:max:MAX:%4.1lf Max,',
1345 'GPRINT:avg:LAST:%4.1lf Last\l'
1348 'DEF:avg={file}:value:AVERAGE',
1349 'DEF:min={file}:value:MIN',
1350 'DEF:max={file}:value:MAX',
1351 "AREA:max#$HalfMagenta",
1353 "LINE1:avg#$FullMagenta:Count ",
1354 'GPRINT:min:MIN:%4.1lf Min,',
1355 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1356 'GPRINT:max:MAX:%4.1lf Max,',
1357 'GPRINT:avg:LAST:%4.1lf Last\l'
1359 conntrack => ['-v', 'Entries',
1360 'DEF:avg={file}:entropy:AVERAGE',
1361 'DEF:min={file}:entropy:MIN',
1362 'DEF:max={file}:entropy:MAX',
1363 "AREA:max#$HalfBlue",
1365 "LINE1:avg#$FullBlue:Count",
1366 'GPRINT:min:MIN:%4.0lf Min,',
1367 'GPRINT:avg:AVERAGE:%4.0lf Avg,',
1368 'GPRINT:max:MAX:%4.0lf Max,',
1369 'GPRINT:avg:LAST:%4.0lf Last\l'
1371 entropy => ['-v', 'Bits',
1372 'DEF:avg={file}:entropy:AVERAGE',
1373 'DEF:min={file}:entropy:MIN',
1374 'DEF:max={file}:entropy:MAX',
1375 "AREA:max#$HalfBlue",
1377 "LINE1:avg#$FullBlue:Bits",
1378 'GPRINT:min:MIN:%4.0lfbit Min,',
1379 'GPRINT:avg:AVERAGE:%4.0lfbit Avg,',
1380 'GPRINT:max:MAX:%4.0lfbit Max,',
1381 'GPRINT:avg:LAST:%4.0lfbit Last\l'
1383 fanspeed => ['-v', 'RPM',
1384 'DEF:avg={file}:value:AVERAGE',
1385 'DEF:min={file}:value:MIN',
1386 'DEF:max={file}:value:MAX',
1387 "AREA:max#$HalfMagenta",
1389 "LINE1:avg#$FullMagenta:RPM",
1390 'GPRINT:min:MIN:%4.1lf Min,',
1391 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1392 'GPRINT:max:MAX:%4.1lf Max,',
1393 'GPRINT:avg:LAST:%4.1lf Last\l'
1395 frequency => ['-v', 'Hertz',
1396 'DEF:avg={file}:frequency:AVERAGE',
1397 'DEF:min={file}:frequency:MIN',
1398 'DEF:max={file}:frequency:MAX',
1399 "AREA:max#$HalfBlue",
1401 "LINE1:avg#$FullBlue:Frequency [Hz]",
1402 'GPRINT:min:MIN:%4.1lf Min,',
1403 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1404 'GPRINT:max:MAX:%4.1lf Max,',
1405 'GPRINT:avg:LAST:%4.1lf Last\l'
1407 frequency_offset => [ # NTPd
1408 'DEF:ppm_avg={file}:ppm:AVERAGE',
1409 'DEF:ppm_min={file}:ppm:MIN',
1410 'DEF:ppm_max={file}:ppm:MAX',
1411 "AREA:ppm_max#$HalfBlue",
1412 "AREA:ppm_min#$Canvas",
1413 "LINE1:ppm_avg#$FullBlue:{inst}",
1414 'GPRINT:ppm_min:MIN:%5.2lf Min,',
1415 'GPRINT:ppm_avg:AVERAGE:%5.2lf Avg,',
1416 'GPRINT:ppm_max:MAX:%5.2lf Max,',
1417 'GPRINT:ppm_avg:LAST:%5.2lf Last'
1419 gauge => ['-v', 'Exec value',
1420 'DEF:temp_avg={file}:value:AVERAGE',
1421 'DEF:temp_min={file}:value:MIN',
1422 'DEF:temp_max={file}:value:MAX',
1423 "AREA:temp_max#$HalfBlue",
1424 "AREA:temp_min#$Canvas",
1425 "LINE1:temp_avg#$FullBlue:Exec value",
1426 'GPRINT:temp_min:MIN:%6.2lf Min,',
1427 'GPRINT:temp_avg:AVERAGE:%6.2lf Avg,',
1428 'GPRINT:temp_max:MAX:%6.2lf Max,',
1429 'GPRINT:temp_avg:LAST:%6.2lf Last\l'
1432 'DEF:temp_avg={file}:value:AVERAGE',
1433 'DEF:temp_min={file}:value:MIN',
1434 'DEF:temp_max={file}:value:MAX',
1435 "AREA:temp_max#$HalfRed",
1436 "AREA:temp_min#$Canvas",
1437 "LINE1:temp_avg#$FullRed:Temperature",
1438 'GPRINT:temp_min:MIN:%4.1lf Min,',
1439 'GPRINT:temp_avg:AVERAGE:%4.1lf Avg,',
1440 'GPRINT:temp_max:MAX:%4.1lf Max,',
1441 'GPRINT:temp_avg:LAST:%4.1lf Last\l'
1443 humidity => ['-v', 'Percent',
1444 'DEF:temp_avg={file}:value:AVERAGE',
1445 'DEF:temp_min={file}:value:MIN',
1446 'DEF:temp_max={file}:value:MAX',
1447 "AREA:temp_max#$HalfGreen",
1448 "AREA:temp_min#$Canvas",
1449 "LINE1:temp_avg#$FullGreen:Temperature",
1450 'GPRINT:temp_min:MIN:%4.1lf%% Min,',
1451 'GPRINT:temp_avg:AVERAGE:%4.1lf%% Avg,',
1452 'GPRINT:temp_max:MAX:%4.1lf%% Max,',
1453 'GPRINT:temp_avg:LAST:%4.1lf%% Last\l'
1455 if_errors => ['-v', 'Errors/s',
1456 'DEF:tx_min={file}:tx:MIN',
1457 'DEF:tx_avg={file}:tx:AVERAGE',
1458 'DEF:tx_max={file}:tx:MAX',
1459 'DEF:rx_min={file}:rx:MIN',
1460 'DEF:rx_avg={file}:rx:AVERAGE',
1461 'DEF:rx_max={file}:rx:MAX',
1462 'CDEF:overlap=tx_avg,rx_avg,GT,rx_avg,tx_avg,IF',
1463 'CDEF:mytime=tx_avg,TIME,TIME,IF',
1464 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
1465 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
1466 'CDEF:tx_avg_sample=tx_avg,UN,0,tx_avg,IF,sample_len,*',
1467 'CDEF:tx_avg_sum=PREV,UN,0,PREV,IF,tx_avg_sample,+',
1468 'CDEF:rx_avg_sample=rx_avg,UN,0,rx_avg,IF,sample_len,*',
1469 'CDEF:rx_avg_sum=PREV,UN,0,PREV,IF,rx_avg_sample,+',
1470 "AREA:tx_avg#$HalfGreen",
1471 "AREA:rx_avg#$HalfBlue",
1472 "AREA:overlap#$HalfBlueGreen",
1473 "LINE1:tx_avg#$FullGreen:TX",
1474 'GPRINT:tx_avg:AVERAGE:%5.1lf%s Avg,',
1475 'GPRINT:tx_max:MAX:%5.1lf%s Max,',
1476 'GPRINT:tx_avg:LAST:%5.1lf%s Last',
1477 'GPRINT:tx_avg_sum:LAST:(ca. %4.0lf%s Total)\l',
1478 "LINE1:rx_avg#$FullBlue:RX",
1479 #'GPRINT:rx_min:MIN:%5.1lf %s Min,',
1480 'GPRINT:rx_avg:AVERAGE:%5.1lf%s Avg,',
1481 'GPRINT:rx_max:MAX:%5.1lf%s Max,',
1482 'GPRINT:rx_avg:LAST:%5.1lf%s Last',
1483 'GPRINT:rx_avg_sum:LAST:(ca. %4.0lf%s Total)\l'
1485 if_collisions => ['-v', 'Collisions/s',
1486 'DEF:min_raw={file}:value:MIN',
1487 'DEF:avg_raw={file}:value:AVERAGE',
1488 'DEF:max_raw={file}:value:MAX',
1489 'CDEF:min=min_raw,8,*',
1490 'CDEF:avg=avg_raw,8,*',
1491 'CDEF:max=max_raw,8,*',
1492 "AREA:max#$HalfBlue",
1494 "LINE1:avg#$FullBlue:Collisions/s",
1495 'GPRINT:min:MIN:%5.1lf %s Min,',
1496 'GPRINT:avg:AVERAGE:%5.1lf%s Avg,',
1497 'GPRINT:max:MAX:%5.1lf%s Max,',
1498 'GPRINT:avg:LAST:%5.1lf%s Last\l'
1500 if_dropped => ['-v', 'Packets/s',
1501 'DEF:tx_min={file}:tx:MIN',
1502 'DEF:tx_avg={file}:tx:AVERAGE',
1503 'DEF:tx_max={file}:tx:MAX',
1504 'DEF:rx_min={file}:rx:MIN',
1505 'DEF:rx_avg={file}:rx:AVERAGE',
1506 'DEF:rx_max={file}:rx:MAX',
1507 'CDEF:overlap=tx_avg,rx_avg,GT,rx_avg,tx_avg,IF',
1508 'CDEF:mytime=tx_avg,TIME,TIME,IF',
1509 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
1510 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
1511 'CDEF:tx_avg_sample=tx_avg,UN,0,tx_avg,IF,sample_len,*',
1512 'CDEF:tx_avg_sum=PREV,UN,0,PREV,IF,tx_avg_sample,+',
1513 'CDEF:rx_avg_sample=rx_avg,UN,0,rx_avg,IF,sample_len,*',
1514 'CDEF:rx_avg_sum=PREV,UN,0,PREV,IF,rx_avg_sample,+',
1515 "AREA:tx_avg#$HalfGreen",
1516 "AREA:rx_avg#$HalfBlue",
1517 "AREA:overlap#$HalfBlueGreen",
1518 "LINE1:tx_avg#$FullGreen:TX",
1519 'GPRINT:tx_avg:AVERAGE:%5.1lf%s Avg,',
1520 'GPRINT:tx_max:MAX:%5.1lf%s Max,',
1521 'GPRINT:tx_avg:LAST:%5.1lf%s Last',
1522 'GPRINT:tx_avg_sum:LAST:(ca. %4.0lf%s Total)\l',
1523 "LINE1:rx_avg#$FullBlue:RX",
1524 #'GPRINT:rx_min:MIN:%5.1lf %s Min,',
1525 'GPRINT:rx_avg:AVERAGE:%5.1lf%s Avg,',
1526 'GPRINT:rx_max:MAX:%5.1lf%s Max,',
1527 'GPRINT:rx_avg:LAST:%5.1lf%s Last',
1528 'GPRINT:rx_avg_sum:LAST:(ca. %4.0lf%s Total)\l'
1530 if_packets => ['-v', 'Packets/s',
1531 'DEF:tx_min={file}:tx:MIN',
1532 'DEF:tx_avg={file}:tx:AVERAGE',
1533 'DEF:tx_max={file}:tx:MAX',
1534 'DEF:rx_min={file}:rx:MIN',
1535 'DEF:rx_avg={file}:rx:AVERAGE',
1536 'DEF:rx_max={file}:rx:MAX',
1537 'CDEF:overlap=tx_avg,rx_avg,GT,rx_avg,tx_avg,IF',
1538 'CDEF:mytime=tx_avg,TIME,TIME,IF',
1539 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
1540 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
1541 'CDEF:tx_avg_sample=tx_avg,UN,0,tx_avg,IF,sample_len,*',
1542 'CDEF:tx_avg_sum=PREV,UN,0,PREV,IF,tx_avg_sample,+',
1543 'CDEF:rx_avg_sample=rx_avg,UN,0,rx_avg,IF,sample_len,*',
1544 'CDEF:rx_avg_sum=PREV,UN,0,PREV,IF,rx_avg_sample,+',
1545 "AREA:tx_avg#$HalfGreen",
1546 "AREA:rx_avg#$HalfBlue",
1547 "AREA:overlap#$HalfBlueGreen",
1548 "LINE1:tx_avg#$FullGreen:TX",
1549 'GPRINT:tx_avg:AVERAGE:%5.1lf%s Avg,',
1550 'GPRINT:tx_max:MAX:%5.1lf%s Max,',
1551 'GPRINT:tx_avg:LAST:%5.1lf%s Last',
1552 'GPRINT:tx_avg_sum:LAST:(ca. %4.0lf%s Total)\l',
1553 "LINE1:rx_avg#$FullBlue:RX",
1554 #'GPRINT:rx_min:MIN:%5.1lf %s Min,',
1555 'GPRINT:rx_avg:AVERAGE:%5.1lf%s Avg,',
1556 'GPRINT:rx_max:MAX:%5.1lf%s Max,',
1557 'GPRINT:rx_avg:LAST:%5.1lf%s Last',
1558 'GPRINT:rx_avg_sum:LAST:(ca. %4.0lf%s Total)\l'
1560 if_rx_errors => ['-v', 'Errors/s',
1561 'DEF:min={file}:value:MIN',
1562 'DEF:avg={file}:value:AVERAGE',
1563 'DEF:max={file}:value:MAX',
1564 'CDEF:mytime=avg,TIME,TIME,IF',
1565 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
1566 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
1567 'CDEF:avg_sample=avg,UN,0,avg,IF,sample_len,*',
1568 'CDEF:avg_sum=PREV,UN,0,PREV,IF,avg_sample,+',
1569 "AREA:avg#$HalfBlue",
1570 "LINE1:avg#$FullBlue:Errors/s",
1571 'GPRINT:avg:AVERAGE:%3.1lf%s Avg,',
1572 'GPRINT:max:MAX:%3.1lf%s Max,',
1573 'GPRINT:avg:LAST:%3.1lf%s Last',
1574 'GPRINT:avg_sum:LAST:(ca. %2.0lf%s Total)\l'
1576 ipt_bytes => ['-v', 'Bits/s',
1577 'DEF:min_raw={file}:value:MIN',
1578 'DEF:avg_raw={file}:value:AVERAGE',
1579 'DEF:max_raw={file}:value:MAX',
1580 'CDEF:min=min_raw,8,*',
1581 'CDEF:avg=avg_raw,8,*',
1582 'CDEF:max=max_raw,8,*',
1583 'CDEF:mytime=avg_raw,TIME,TIME,IF',
1584 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
1585 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
1586 'CDEF:avg_sample=avg_raw,UN,0,avg_raw,IF,sample_len,*',
1587 'CDEF:avg_sum=PREV,UN,0,PREV,IF,avg_sample,+',
1588 "AREA:max#$HalfBlue",
1590 "LINE1:avg#$FullBlue:Bits/s",
1591 #'GPRINT:min:MIN:%5.1lf %s Min,',
1592 'GPRINT:avg:AVERAGE:%5.1lf%s Avg,',
1593 'GPRINT:max:MAX:%5.1lf%s Max,',
1594 'GPRINT:avg:LAST:%5.1lf%s Last',
1595 'GPRINT:avg_sum:LAST:(ca. %5.1lf%sB Total)\l'
1597 ipt_packets => ['-v', 'Packets/s',
1598 'DEF:min_raw={file}:value:MIN',
1599 'DEF:avg_raw={file}:value:AVERAGE',
1600 'DEF:max_raw={file}:value:MAX',
1601 'CDEF:min=min_raw,8,*',
1602 'CDEF:avg=avg_raw,8,*',
1603 'CDEF:max=max_raw,8,*',
1604 "AREA:max#$HalfBlue",
1606 "LINE1:avg#$FullBlue:Packets/s",
1607 'GPRINT:min:MIN:%5.1lf %s Min,',
1608 'GPRINT:avg:AVERAGE:%5.1lf%s Avg,',
1609 'GPRINT:max:MAX:%5.1lf%s Max,',
1610 'GPRINT:avg:LAST:%5.1lf%s Last\l'
1612 irq => ['-v', 'Issues/s',
1613 'DEF:avg={file}:value:AVERAGE',
1614 'DEF:min={file}:value:MIN',
1615 'DEF:max={file}:value:MAX',
1616 "AREA:max#$HalfBlue",
1618 "LINE1:avg#$FullBlue:Issues/s",
1619 'GPRINT:min:MIN:%6.2lf Min,',
1620 'GPRINT:avg:AVERAGE:%6.2lf Avg,',
1621 'GPRINT:max:MAX:%6.2lf Max,',
1622 'GPRINT:avg:LAST:%6.2lf Last\l'
1624 load => ['-v', 'System load',
1625 'DEF:s_avg={file}:shortterm:AVERAGE',
1626 'DEF:s_min={file}:shortterm:MIN',
1627 'DEF:s_max={file}:shortterm:MAX',
1628 'DEF:m_avg={file}:midterm:AVERAGE',
1629 'DEF:m_min={file}:midterm:MIN',
1630 'DEF:m_max={file}:midterm:MAX',
1631 'DEF:l_avg={file}:longterm:AVERAGE',
1632 'DEF:l_min={file}:longterm:MIN',
1633 'DEF:l_max={file}:longterm:MAX',
1634 "AREA:s_max#$HalfGreen",
1635 "AREA:s_min#$Canvas",
1636 "LINE1:s_avg#$FullGreen: 1m average",
1637 'GPRINT:s_min:MIN:%4.2lf Min,',
1638 'GPRINT:s_avg:AVERAGE:%4.2lf Avg,',
1639 'GPRINT:s_max:MAX:%4.2lf Max,',
1640 'GPRINT:s_avg:LAST:%4.2lf Last\n',
1641 "LINE1:m_avg#$FullBlue: 5m average",
1642 'GPRINT:m_min:MIN:%4.2lf Min,',
1643 'GPRINT:m_avg:AVERAGE:%4.2lf Avg,',
1644 'GPRINT:m_max:MAX:%4.2lf Max,',
1645 'GPRINT:m_avg:LAST:%4.2lf Last\n',
1646 "LINE1:l_avg#$FullRed:15m average",
1647 'GPRINT:l_min:MIN:%4.2lf Min,',
1648 'GPRINT:l_avg:AVERAGE:%4.2lf Avg,',
1649 'GPRINT:l_max:MAX:%4.2lf Max,',
1650 'GPRINT:l_avg:LAST:%4.2lf Last'
1653 'DEF:avg={file}:percent:AVERAGE',
1654 'DEF:min={file}:percent:MIN',
1655 'DEF:max={file}:percent:MAX',
1656 "AREA:max#$HalfBlue",
1658 "LINE1:avg#$FullBlue:Load",
1659 'GPRINT:min:MIN:%5.1lf%s%% Min,',
1660 'GPRINT:avg:AVERAGE:%5.1lf%s%% Avg,',
1661 'GPRINT:max:MAX:%5.1lf%s%% Max,',
1662 'GPRINT:avg:LAST:%5.1lf%s%% Last\l'
1664 mails => ['DEF:rawgood={file}:good:AVERAGE',
1665 'DEF:rawspam={file}:spam:AVERAGE',
1666 'CDEF:good=rawgood,UN,0,rawgood,IF',
1667 'CDEF:spam=rawspam,UN,0,rawspam,IF',
1668 'CDEF:negspam=spam,-1,*',
1669 "AREA:good#$HalfGreen",
1670 "LINE1:good#$FullGreen:Good mails",
1671 'GPRINT:good:AVERAGE:%4.1lf Avg,',
1672 'GPRINT:good:MAX:%4.1lf Max,',
1673 'GPRINT:good:LAST:%4.1lf Last\n',
1674 "AREA:negspam#$HalfRed",
1675 "LINE1:negspam#$FullRed:Spam mails",
1676 'GPRINT:spam:AVERAGE:%4.1lf Avg,',
1677 'GPRINT:spam:MAX:%4.1lf Max,',
1678 'GPRINT:spam:LAST:%4.1lf Last',
1681 memcached_command => ['-v', 'Commands',
1682 'DEF:avg={file}:value:AVERAGE',
1683 'DEF:min={file}:value:MIN',
1684 'DEF:max={file}:value:MAX',
1685 "AREA:max#$HalfBlue",
1687 "LINE1:avg#$FullBlue:Commands",
1688 'GPRINT:min:MIN:%5.1lf%s Min,',
1689 'GPRINT:avg:AVERAGE:%5.1lf Avg,',
1690 'GPRINT:max:MAX:%5.1lf Max,',
1691 'GPRINT:avg:LAST:%5.1lf Last\l'
1693 memcached_connections => ['-v', 'Connections',
1694 'DEF:avg={file}:value:AVERAGE',
1695 'DEF:min={file}:value:MIN',
1696 'DEF:max={file}:value:MAX',
1697 "AREA:max#$HalfBlue",
1699 "LINE1:avg#$FullBlue:Connections",
1700 'GPRINT:min:MIN:%4.1lf Min,',
1701 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1702 'GPRINT:max:MAX:%4.1lf Max,',
1703 'GPRINT:avg:LAST:%4.1lf Last\l'
1705 memcached_items => ['-v', 'Items',
1706 'DEF:avg={file}:value:AVERAGE',
1707 'DEF:min={file}:value:MIN',
1708 'DEF:max={file}:value:MAX',
1709 "AREA:max#$HalfBlue",
1711 "LINE1:avg#$FullBlue:Items",
1712 'GPRINT:min:MIN:%4.1lf Min,',
1713 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1714 'GPRINT:max:MAX:%4.1lf Max,',
1715 'GPRINT:avg:LAST:%4.1lf Last\l'
1717 memcached_octets => ['-v', 'Bits/s',
1718 'DEF:out_min={file}:tx:MIN',
1719 'DEF:out_avg={file}:tx:AVERAGE',
1720 'DEF:out_max={file}:tx:MAX',
1721 'DEF:inc_min={file}:rx:MIN',
1722 'DEF:inc_avg={file}:rx:AVERAGE',
1723 'DEF:inc_max={file}:rx:MAX',
1724 'CDEF:mytime=out_avg,TIME,TIME,IF',
1725 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
1726 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
1727 'CDEF:out_avg_sample=out_avg,UN,0,out_avg,IF,sample_len,*',
1728 'CDEF:out_avg_sum=PREV,UN,0,PREV,IF,out_avg_sample,+',
1729 'CDEF:inc_avg_sample=inc_avg,UN,0,inc_avg,IF,sample_len,*',
1730 'CDEF:inc_avg_sum=PREV,UN,0,PREV,IF,inc_avg_sample,+',
1731 'CDEF:out_bit_min=out_min,8,*',
1732 'CDEF:out_bit_avg=out_avg,8,*',
1733 'CDEF:out_bit_max=out_max,8,*',
1734 'CDEF:inc_bit_min=inc_min,8,*',
1735 'CDEF:inc_bit_avg=inc_avg,8,*',
1736 'CDEF:inc_bit_max=inc_max,8,*',
1737 'CDEF:overlap=out_bit_avg,inc_bit_avg,GT,inc_bit_avg,out_bit_avg,IF',
1738 "AREA:out_bit_avg#$HalfGreen",
1739 "AREA:inc_bit_avg#$HalfBlue",
1740 "AREA:overlap#$HalfBlueGreen",
1741 "LINE1:out_bit_avg#$FullGreen:Written",
1742 'GPRINT:out_bit_avg:AVERAGE:%5.1lf%s Avg,',
1743 'GPRINT:out_bit_max:MAX:%5.1lf%s Max,',
1744 'GPRINT:out_bit_avg:LAST:%5.1lf%s Last',
1745 'GPRINT:out_avg_sum:LAST:(ca. %5.1lf%sB Total)\l',
1746 "LINE1:inc_bit_avg#$FullBlue:Read ",
1747 'GPRINT:inc_bit_avg:AVERAGE:%5.1lf%s Avg,',
1748 'GPRINT:inc_bit_max:MAX:%5.1lf%s Max,',
1749 'GPRINT:inc_bit_avg:LAST:%5.1lf%s Last',
1750 'GPRINT:inc_avg_sum:LAST:(ca. %5.1lf%sB Total)\l'
1752 memcached_ops => ['-v', 'Ops',
1753 'DEF:avg={file}:value:AVERAGE',
1754 'DEF:min={file}:value:MIN',
1755 'DEF:max={file}:value:MAX',
1756 "AREA:max#$HalfBlue",
1758 "LINE1:avg#$FullBlue:Ops",
1759 'GPRINT:min:MIN:%4.1lf Min,',
1760 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
1761 'GPRINT:max:MAX:%4.1lf Max,',
1762 'GPRINT:avg:LAST:%4.1lf Last\l'
1764 memory => ['-b', '1024', '-v', 'Bytes',
1765 'DEF:avg={file}:value:AVERAGE',
1766 'DEF:min={file}:value:MIN',
1767 'DEF:max={file}:value:MAX',
1768 "AREA:max#$HalfBlue",
1770 "LINE1:avg#$FullBlue:Memory",
1771 'GPRINT:min:MIN:%5.1lf%sbyte Min,',
1772 'GPRINT:avg:AVERAGE:%5.1lf%sbyte Avg,',
1773 'GPRINT:max:MAX:%5.1lf%sbyte Max,',
1774 'GPRINT:avg:LAST:%5.1lf%sbyte Last\l'
1777 'DEF:used_avg={file}:used:AVERAGE',
1778 'DEF:free_avg={file}:free:AVERAGE',
1779 'DEF:buffers_avg={file}:buffers:AVERAGE',
1780 'DEF:cached_avg={file}:cached:AVERAGE',
1781 'DEF:used_min={file}:used:MIN',
1782 'DEF:free_min={file}:free:MIN',
1783 'DEF:buffers_min={file}:buffers:MIN',
1784 'DEF:cached_min={file}:cached:MIN',
1785 'DEF:used_max={file}:used:MAX',
1786 'DEF:free_max={file}:free:MAX',
1787 'DEF:buffers_max={file}:buffers:MAX',
1788 'DEF:cached_max={file}:cached:MAX',
1789 'CDEF:cached_avg_nn=cached_avg,UN,0,cached_avg,IF',
1790 'CDEF:buffers_avg_nn=buffers_avg,UN,0,buffers_avg,IF',
1791 'CDEF:free_cached_buffers_used=free_avg,cached_avg_nn,+,buffers_avg_nn,+,used_avg,+',
1792 'CDEF:cached_buffers_used=cached_avg,buffers_avg_nn,+,used_avg,+',
1793 'CDEF:buffers_used=buffers_avg,used_avg,+',
1794 "AREA:free_cached_buffers_used#$HalfGreen",
1795 "AREA:cached_buffers_used#$HalfBlue",
1796 "AREA:buffers_used#$HalfYellow",
1797 "AREA:used_avg#$HalfRed",
1798 "LINE1:free_cached_buffers_used#$FullGreen:Free ",
1799 'GPRINT:free_min:MIN:%5.1lf%s Min,',
1800 'GPRINT:free_avg:AVERAGE:%5.1lf%s Avg,',
1801 'GPRINT:free_max:MAX:%5.1lf%s Max,',
1802 'GPRINT:free_avg:LAST:%5.1lf%s Last\n',
1803 "LINE1:cached_buffers_used#$FullBlue:Page cache ",
1804 'GPRINT:cached_min:MIN:%5.1lf%s Min,',
1805 'GPRINT:cached_avg:AVERAGE:%5.1lf%s Avg,',
1806 'GPRINT:cached_max:MAX:%5.1lf%s Max,',
1807 'GPRINT:cached_avg:LAST:%5.1lf%s Last\n',
1808 "LINE1:buffers_used#$FullYellow:Buffer cache",
1809 'GPRINT:buffers_min:MIN:%5.1lf%s Min,',
1810 'GPRINT:buffers_avg:AVERAGE:%5.1lf%s Avg,',
1811 'GPRINT:buffers_max:MAX:%5.1lf%s Max,',
1812 'GPRINT:buffers_avg:LAST:%5.1lf%s Last\n',
1813 "LINE1:used_avg#$FullRed:Used ",
1814 'GPRINT:used_min:MIN:%5.1lf%s Min,',
1815 'GPRINT:used_avg:AVERAGE:%5.1lf%s Avg,',
1816 'GPRINT:used_max:MAX:%5.1lf%s Max,',
1817 'GPRINT:used_avg:LAST:%5.1lf%s Last'
1819 mysql_commands => ['-v', 'Issues/s',
1820 "DEF:val_avg={file}:value:AVERAGE",
1821 "DEF:val_min={file}:value:MIN",
1822 "DEF:val_max={file}:value:MAX",
1823 "AREA:val_max#$HalfBlue",
1824 "AREA:val_min#$Canvas",
1825 "LINE1:val_avg#$FullBlue:Issues/s",
1826 'GPRINT:val_min:MIN:%5.2lf Min,',
1827 'GPRINT:val_avg:AVERAGE:%5.2lf Avg,',
1828 'GPRINT:val_max:MAX:%5.2lf Max,',
1829 'GPRINT:val_avg:LAST:%5.2lf Last'
1831 mysql_handler => ['-v', 'Issues/s',
1832 "DEF:val_avg={file}:value:AVERAGE",
1833 "DEF:val_min={file}:value:MIN",
1834 "DEF:val_max={file}:value:MAX",
1835 "AREA:val_max#$HalfBlue",
1836 "AREA:val_min#$Canvas",
1837 "LINE1:val_avg#$FullBlue:Issues/s",
1838 'GPRINT:val_min:MIN:%5.2lf Min,',
1839 'GPRINT:val_avg:AVERAGE:%5.2lf Avg,',
1840 'GPRINT:val_max:MAX:%5.2lf Max,',
1841 'GPRINT:val_avg:LAST:%5.2lf Last'
1843 mysql_octets => ['-v', 'Bits/s',
1844 'DEF:out_min={file}:tx:MIN',
1845 'DEF:out_avg={file}:tx:AVERAGE',
1846 'DEF:out_max={file}:tx:MAX',
1847 'DEF:inc_min={file}:rx:MIN',
1848 'DEF:inc_avg={file}:rx:AVERAGE',
1849 'DEF:inc_max={file}:rx:MAX',
1850 'CDEF:mytime=out_avg,TIME,TIME,IF',
1851 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
1852 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
1853 'CDEF:out_avg_sample=out_avg,UN,0,out_avg,IF,sample_len,*',
1854 'CDEF:out_avg_sum=PREV,UN,0,PREV,IF,out_avg_sample,+',
1855 'CDEF:inc_avg_sample=inc_avg,UN,0,inc_avg,IF,sample_len,*',
1856 'CDEF:inc_avg_sum=PREV,UN,0,PREV,IF,inc_avg_sample,+',
1857 'CDEF:out_bit_min=out_min,8,*',
1858 'CDEF:out_bit_avg=out_avg,8,*',
1859 'CDEF:out_bit_max=out_max,8,*',
1860 'CDEF:inc_bit_min=inc_min,8,*',
1861 'CDEF:inc_bit_avg=inc_avg,8,*',
1862 'CDEF:inc_bit_max=inc_max,8,*',
1863 'CDEF:overlap=out_bit_avg,inc_bit_avg,GT,inc_bit_avg,out_bit_avg,IF',
1864 "AREA:out_bit_avg#$HalfGreen",
1865 "AREA:inc_bit_avg#$HalfBlue",
1866 "AREA:overlap#$HalfBlueGreen",
1867 "LINE1:out_bit_avg#$FullGreen:Written",
1868 'GPRINT:out_bit_avg:AVERAGE:%5.1lf%s Avg,',
1869 'GPRINT:out_bit_max:MAX:%5.1lf%s Max,',
1870 'GPRINT:out_bit_avg:LAST:%5.1lf%s Last',
1871 'GPRINT:out_avg_sum:LAST:(ca. %5.1lf%sB Total)\l',
1872 "LINE1:inc_bit_avg#$FullBlue:Read ",
1873 'GPRINT:inc_bit_avg:AVERAGE:%5.1lf%s Avg,',
1874 'GPRINT:inc_bit_max:MAX:%5.1lf%s Max,',
1875 'GPRINT:inc_bit_avg:LAST:%5.1lf%s Last',
1876 'GPRINT:inc_avg_sum:LAST:(ca. %5.1lf%sB Total)\l'
1878 mysql_qcache => ['-v', 'Queries/s',
1879 "DEF:hits_min={file}:hits:MIN",
1880 "DEF:hits_avg={file}:hits:AVERAGE",
1881 "DEF:hits_max={file}:hits:MAX",
1882 "DEF:inserts_min={file}:inserts:MIN",
1883 "DEF:inserts_avg={file}:inserts:AVERAGE",
1884 "DEF:inserts_max={file}:inserts:MAX",
1885 "DEF:not_cached_min={file}:not_cached:MIN",
1886 "DEF:not_cached_avg={file}:not_cached:AVERAGE",
1887 "DEF:not_cached_max={file}:not_cached:MAX",
1888 "DEF:lowmem_prunes_min={file}:lowmem_prunes:MIN",
1889 "DEF:lowmem_prunes_avg={file}:lowmem_prunes:AVERAGE",
1890 "DEF:lowmem_prunes_max={file}:lowmem_prunes:MAX",
1891 "DEF:queries_min={file}:queries_in_cache:MIN",
1892 "DEF:queries_avg={file}:queries_in_cache:AVERAGE",
1893 "DEF:queries_max={file}:queries_in_cache:MAX",
1894 "CDEF:unknown=queries_avg,UNKN,+",
1895 "CDEF:not_cached_agg=hits_avg,inserts_avg,+,not_cached_avg,+",
1896 "CDEF:inserts_agg=hits_avg,inserts_avg,+",
1897 "CDEF:hits_agg=hits_avg",
1898 "AREA:not_cached_agg#$HalfYellow",
1899 "AREA:inserts_agg#$HalfBlue",
1900 "AREA:hits_agg#$HalfGreen",
1901 "LINE1:not_cached_agg#$FullYellow:Not Cached ",
1902 'GPRINT:not_cached_min:MIN:%5.2lf Min,',
1903 'GPRINT:not_cached_avg:AVERAGE:%5.2lf Avg,',
1904 'GPRINT:not_cached_max:MAX:%5.2lf Max,',
1905 'GPRINT:not_cached_avg:LAST:%5.2lf Last\l',
1906 "LINE1:inserts_agg#$FullBlue:Inserts ",
1907 'GPRINT:inserts_min:MIN:%5.2lf Min,',
1908 'GPRINT:inserts_avg:AVERAGE:%5.2lf Avg,',
1909 'GPRINT:inserts_max:MAX:%5.2lf Max,',
1910 'GPRINT:inserts_avg:LAST:%5.2lf Last\l',
1911 "LINE1:hits_agg#$FullGreen:Hits ",
1912 'GPRINT:hits_min:MIN:%5.2lf Min,',
1913 'GPRINT:hits_avg:AVERAGE:%5.2lf Avg,',
1914 'GPRINT:hits_max:MAX:%5.2lf Max,',
1915 'GPRINT:hits_avg:LAST:%5.2lf Last\l',
1916 "LINE1:lowmem_prunes_avg#$FullRed:Lowmem Prunes ",
1917 'GPRINT:lowmem_prunes_min:MIN:%5.2lf Min,',
1918 'GPRINT:lowmem_prunes_avg:AVERAGE:%5.2lf Avg,',
1919 'GPRINT:lowmem_prunes_max:MAX:%5.2lf Max,',
1920 'GPRINT:lowmem_prunes_avg:LAST:%5.2lf Last\l',
1921 "LINE1:unknown#$Canvas:Queries in cache",
1922 'GPRINT:queries_min:MIN:%5.0lf Min,',
1923 'GPRINT:queries_avg:AVERAGE:%5.0lf Avg,',
1924 'GPRINT:queries_max:MAX:%5.0lf Max,',
1925 'GPRINT:queries_avg:LAST:%5.0lf Last\l'
1927 mysql_threads => ['-v', 'Threads',
1928 "DEF:running_min={file}:running:MIN",
1929 "DEF:running_avg={file}:running:AVERAGE",
1930 "DEF:running_max={file}:running:MAX",
1931 "DEF:connected_min={file}:connected:MIN",
1932 "DEF:connected_avg={file}:connected:AVERAGE",
1933 "DEF:connected_max={file}:connected:MAX",
1934 "DEF:cached_min={file}:cached:MIN",
1935 "DEF:cached_avg={file}:cached:AVERAGE",
1936 "DEF:cached_max={file}:cached:MAX",
1937 "DEF:created_min={file}:created:MIN",
1938 "DEF:created_avg={file}:created:AVERAGE",
1939 "DEF:created_max={file}:created:MAX",
1940 "CDEF:unknown=created_avg,UNKN,+",
1941 "CDEF:cached_agg=connected_avg,cached_avg,+",
1942 "AREA:cached_agg#$HalfGreen",
1943 "AREA:connected_avg#$HalfBlue",
1944 "AREA:running_avg#$HalfRed",
1945 "LINE1:cached_agg#$FullGreen:Cached ",
1946 'GPRINT:cached_min:MIN:%5.1lf Min,',
1947 'GPRINT:cached_avg:AVERAGE:%5.1lf Avg,',
1948 'GPRINT:cached_max:MAX:%5.1lf Max,',
1949 'GPRINT:cached_avg:LAST:%5.1lf Last\l',
1950 "LINE1:connected_avg#$FullBlue:Connected",
1951 'GPRINT:connected_min:MIN:%5.1lf Min,',
1952 'GPRINT:connected_avg:AVERAGE:%5.1lf Avg,',
1953 'GPRINT:connected_max:MAX:%5.1lf Max,',
1954 'GPRINT:connected_avg:LAST:%5.1lf Last\l',
1955 "LINE1:running_avg#$FullRed:Running ",
1956 'GPRINT:running_min:MIN:%5.1lf Min,',
1957 'GPRINT:running_avg:AVERAGE:%5.1lf Avg,',
1958 'GPRINT:running_max:MAX:%5.1lf Max,',
1959 'GPRINT:running_avg:LAST:%5.1lf Last\l',
1960 "LINE1:unknown#$Canvas:Created ",
1961 'GPRINT:created_min:MIN:%5.0lf Min,',
1962 'GPRINT:created_avg:AVERAGE:%5.0lf Avg,',
1963 'GPRINT:created_max:MAX:%5.0lf Max,',
1964 'GPRINT:created_avg:LAST:%5.0lf Last\l'
1966 nfs_procedure => ['-v', 'Issues/s',
1967 'DEF:avg={file}:value:AVERAGE',
1968 'DEF:min={file}:value:MIN',
1969 'DEF:max={file}:value:MAX',
1970 "AREA:max#$HalfBlue",
1972 "LINE1:avg#$FullBlue:Issues/s",
1973 'GPRINT:min:MIN:%6.2lf Min,',
1974 'GPRINT:avg:AVERAGE:%6.2lf Avg,',
1975 'GPRINT:max:MAX:%6.2lf Max,',
1976 'GPRINT:avg:LAST:%6.2lf Last\l'
1978 nfs3_procedures => [
1979 "DEF:null_avg={file}:null:AVERAGE",
1980 "DEF:getattr_avg={file}:getattr:AVERAGE",
1981 "DEF:setattr_avg={file}:setattr:AVERAGE",
1982 "DEF:lookup_avg={file}:lookup:AVERAGE",
1983 "DEF:access_avg={file}:access:AVERAGE",
1984 "DEF:readlink_avg={file}:readlink:AVERAGE",
1985 "DEF:read_avg={file}:read:AVERAGE",
1986 "DEF:write_avg={file}:write:AVERAGE",
1987 "DEF:create_avg={file}:create:AVERAGE",
1988 "DEF:mkdir_avg={file}:mkdir:AVERAGE",
1989 "DEF:symlink_avg={file}:symlink:AVERAGE",
1990 "DEF:mknod_avg={file}:mknod:AVERAGE",
1991 "DEF:remove_avg={file}:remove:AVERAGE",
1992 "DEF:rmdir_avg={file}:rmdir:AVERAGE",
1993 "DEF:rename_avg={file}:rename:AVERAGE",
1994 "DEF:link_avg={file}:link:AVERAGE",
1995 "DEF:readdir_avg={file}:readdir:AVERAGE",
1996 "DEF:readdirplus_avg={file}:readdirplus:AVERAGE",
1997 "DEF:fsstat_avg={file}:fsstat:AVERAGE",
1998 "DEF:fsinfo_avg={file}:fsinfo:AVERAGE",
1999 "DEF:pathconf_avg={file}:pathconf:AVERAGE",
2000 "DEF:commit_avg={file}:commit:AVERAGE",
2001 "DEF:null_max={file}:null:MAX",
2002 "DEF:getattr_max={file}:getattr:MAX",
2003 "DEF:setattr_max={file}:setattr:MAX",
2004 "DEF:lookup_max={file}:lookup:MAX",
2005 "DEF:access_max={file}:access:MAX",
2006 "DEF:readlink_max={file}:readlink:MAX",
2007 "DEF:read_max={file}:read:MAX",
2008 "DEF:write_max={file}:write:MAX",
2009 "DEF:create_max={file}:create:MAX",
2010 "DEF:mkdir_max={file}:mkdir:MAX",
2011 "DEF:symlink_max={file}:symlink:MAX",
2012 "DEF:mknod_max={file}:mknod:MAX",
2013 "DEF:remove_max={file}:remove:MAX",
2014 "DEF:rmdir_max={file}:rmdir:MAX",
2015 "DEF:rename_max={file}:rename:MAX",
2016 "DEF:link_max={file}:link:MAX",
2017 "DEF:readdir_max={file}:readdir:MAX",
2018 "DEF:readdirplus_max={file}:readdirplus:MAX",
2019 "DEF:fsstat_max={file}:fsstat:MAX",
2020 "DEF:fsinfo_max={file}:fsinfo:MAX",
2021 "DEF:pathconf_max={file}:pathconf:MAX",
2022 "DEF:commit_max={file}:commit:MAX",
2023 "CDEF:other_avg=null_avg,readlink_avg,create_avg,mkdir_avg,symlink_avg,mknod_avg,remove_avg,rmdir_avg,rename_avg,link_avg,readdir_avg,readdirplus_avg,fsstat_avg,fsinfo_avg,pathconf_avg,+,+,+,+,+,+,+,+,+,+,+,+,+,+",
2024 "CDEF:other_max=null_max,readlink_max,create_max,mkdir_max,symlink_max,mknod_max,remove_max,rmdir_max,rename_max,link_max,readdir_max,readdirplus_max,fsstat_max,fsinfo_max,pathconf_max,+,+,+,+,+,+,+,+,+,+,+,+,+,+",
2025 "CDEF:stack_read=read_avg",
2026 "CDEF:stack_getattr=stack_read,getattr_avg,+",
2027 "CDEF:stack_access=stack_getattr,access_avg,+",
2028 "CDEF:stack_lookup=stack_access,lookup_avg,+",
2029 "CDEF:stack_write=stack_lookup,write_avg,+",
2030 "CDEF:stack_commit=stack_write,commit_avg,+",
2031 "CDEF:stack_setattr=stack_commit,setattr_avg,+",
2032 "CDEF:stack_other=stack_setattr,other_avg,+",
2033 "AREA:stack_other#$HalfRed",
2034 "AREA:stack_setattr#$HalfGreen",
2035 "AREA:stack_commit#$HalfYellow",
2036 "AREA:stack_write#$HalfGreen",
2037 "AREA:stack_lookup#$HalfBlue",
2038 "AREA:stack_access#$HalfMagenta",
2039 "AREA:stack_getattr#$HalfCyan",
2040 "AREA:stack_read#$HalfBlue",
2041 "LINE1:stack_other#$FullRed:Other ",
2042 'GPRINT:other_max:MAX:%5.1lf Max,',
2043 'GPRINT:other_avg:AVERAGE:%5.1lf Avg,',
2044 'GPRINT:other_avg:LAST:%5.1lf Last\l',
2045 "LINE1:stack_setattr#$FullGreen:setattr",
2046 'GPRINT:setattr_max:MAX:%5.1lf Max,',
2047 'GPRINT:setattr_avg:AVERAGE:%5.1lf Avg,',
2048 'GPRINT:setattr_avg:LAST:%5.1lf Last\l',
2049 "LINE1:stack_commit#$FullYellow:commit ",
2050 'GPRINT:commit_max:MAX:%5.1lf Max,',
2051 'GPRINT:commit_avg:AVERAGE:%5.1lf Avg,',
2052 'GPRINT:commit_avg:LAST:%5.1lf Last\l',
2053 "LINE1:stack_write#$FullGreen:write ",
2054 'GPRINT:write_max:MAX:%5.1lf Max,',
2055 'GPRINT:write_avg:AVERAGE:%5.1lf Avg,',
2056 'GPRINT:write_avg:LAST:%5.1lf Last\l',
2057 "LINE1:stack_lookup#$FullBlue:lookup ",
2058 'GPRINT:lookup_max:MAX:%5.1lf Max,',
2059 'GPRINT:lookup_avg:AVERAGE:%5.1lf Avg,',
2060 'GPRINT:lookup_avg:LAST:%5.1lf Last\l',
2061 "LINE1:stack_access#$FullMagenta:access ",
2062 'GPRINT:access_max:MAX:%5.1lf Max,',
2063 'GPRINT:access_avg:AVERAGE:%5.1lf Avg,',
2064 'GPRINT:access_avg:LAST:%5.1lf Last\l',
2065 "LINE1:stack_getattr#$FullCyan:getattr",
2066 'GPRINT:getattr_max:MAX:%5.1lf Max,',
2067 'GPRINT:getattr_avg:AVERAGE:%5.1lf Avg,',
2068 'GPRINT:getattr_avg:LAST:%5.1lf Last\l',
2069 "LINE1:stack_read#$FullBlue:read ",
2070 'GPRINT:read_max:MAX:%5.1lf Max,',
2071 'GPRINT:read_avg:AVERAGE:%5.1lf Avg,',
2072 'GPRINT:read_avg:LAST:%5.1lf Last\l'
2075 "DEF:rbyte_avg={file}:rbytes:AVERAGE",
2076 "DEF:rbyte_min={file}:rbytes:MIN",
2077 "DEF:rbyte_max={file}:rbytes:MAX",
2078 "DEF:wbyte_avg={file}:wbytes:AVERAGE",
2079 "DEF:wbyte_min={file}:wbytes:MIN",
2080 "DEF:wbyte_max={file}:wbytes:MAX",
2081 'CDEF:overlap=wbyte_avg,rbyte_avg,GT,rbyte_avg,wbyte_avg,IF',
2082 "AREA:wbyte_avg#$HalfGreen",
2083 "AREA:rbyte_avg#$HalfBlue",
2084 "AREA:overlap#$HalfBlueGreen",
2085 "LINE1:wbyte_avg#$FullGreen:Write",
2086 'GPRINT:wbyte_min:MIN:%5.1lf%s Min,',
2087 'GPRINT:wbyte_avg:AVERAGE:%5.1lf%s Avg,',
2088 'GPRINT:wbyte_max:MAX:%5.1lf%s Max,',
2089 'GPRINT:wbyte_avg:LAST:%5.1lf%s Last\l',
2090 "LINE1:rbyte_avg#$FullBlue:Read ",
2091 'GPRINT:rbyte_min:MIN:%5.1lf%s Min,',
2092 'GPRINT:rbyte_avg:AVERAGE:%5.1lf%s Avg,',
2093 'GPRINT:rbyte_max:MAX:%5.1lf%s Max,',
2094 'GPRINT:rbyte_avg:LAST:%5.1lf%s Last\l'
2096 percent => ['-v', 'Percent',
2097 'DEF:avg={file}:percent:AVERAGE',
2098 'DEF:min={file}:percent:MIN',
2099 'DEF:max={file}:percent:MAX',
2100 "AREA:max#$HalfBlue",
2102 "LINE1:avg#$FullBlue:Percent",
2103 'GPRINT:min:MIN:%5.1lf%% Min,',
2104 'GPRINT:avg:AVERAGE:%5.1lf%% Avg,',
2105 'GPRINT:max:MAX:%5.1lf%% Max,',
2106 'GPRINT:avg:LAST:%5.1lf%% Last\l'
2108 ping => ['DEF:ping_avg={file}:ping:AVERAGE',
2109 'DEF:ping_min={file}:ping:MIN',
2110 'DEF:ping_max={file}:ping:MAX',
2111 "AREA:ping_max#$HalfBlue",
2112 "AREA:ping_min#$Canvas",
2113 "LINE1:ping_avg#$FullBlue:Ping",
2114 'GPRINT:ping_min:MIN:%4.1lf ms Min,',
2115 'GPRINT:ping_avg:AVERAGE:%4.1lf ms Avg,',
2116 'GPRINT:ping_max:MAX:%4.1lf ms Max,',
2117 'GPRINT:ping_avg:LAST:%4.1lf ms Last'],
2118 pg_blks => ['DEF:pg_blks_avg={file}:value:AVERAGE',
2119 'DEF:pg_blks_min={file}:value:MIN',
2120 'DEF:pg_blks_max={file}:value:MAX',
2121 "AREA:pg_blks_max#$HalfBlue",
2122 "AREA:pg_blks_min#$Canvas",
2123 "LINE1:pg_blks_avg#$FullBlue:Blocks",
2124 'GPRINT:pg_blks_min:MIN:%4.1lf%s Min,',
2125 'GPRINT:pg_blks_avg:AVERAGE:%4.1lf%s Avg,',
2126 'GPRINT:pg_blks_max:MAX:%4.1lf%s Max,',
2127 'GPRINT:pg_blks_avg:LAST:%4.1lf%s Last'],
2128 pg_db_size => ['DEF:pg_db_size_avg={file}:value:AVERAGE',
2129 'DEF:pg_db_size_min={file}:value:MIN',
2130 'DEF:pg_db_size_max={file}:value:MAX',
2131 "AREA:pg_db_size_max#$HalfBlue",
2132 "AREA:pg_db_size_min#$Canvas",
2133 "LINE1:pg_db_size_avg#$FullBlue:Bytes",
2134 'GPRINT:pg_db_size_min:MIN:%4.1lf%s Min,',
2135 'GPRINT:pg_db_size_avg:AVERAGE:%4.1lf%s Avg,',
2136 'GPRINT:pg_db_size_max:MAX:%4.1lf%s Max,',
2137 'GPRINT:pg_db_size_avg:LAST:%4.1lf%s Last'],
2138 pg_n_tup_c => ['DEF:pg_n_tup_avg={file}:value:AVERAGE',
2139 'DEF:pg_n_tup_min={file}:value:MIN',
2140 'DEF:pg_n_tup_max={file}:value:MAX',
2141 "AREA:pg_n_tup_max#$HalfBlue",
2142 "AREA:pg_n_tup_min#$Canvas",
2143 "LINE1:pg_n_tup_avg#$FullBlue:Tuples",
2144 'GPRINT:pg_n_tup_min:MIN:%4.1lf%s Min,',
2145 'GPRINT:pg_n_tup_avg:AVERAGE:%4.1lf%s Avg,',
2146 'GPRINT:pg_n_tup_max:MAX:%4.1lf%s Max,',
2147 'GPRINT:pg_n_tup_avg:LAST:%4.1lf%s Last'],
2148 pg_n_tup_g => ['DEF:pg_n_tup_avg={file}:value:AVERAGE',
2149 'DEF:pg_n_tup_min={file}:value:MIN',
2150 'DEF:pg_n_tup_max={file}:value:MAX',
2151 "AREA:pg_n_tup_max#$HalfBlue",
2152 "AREA:pg_n_tup_min#$Canvas",
2153 "LINE1:pg_n_tup_avg#$FullBlue:Tuples",
2154 'GPRINT:pg_n_tup_min:MIN:%4.1lf%s Min,',
2155 'GPRINT:pg_n_tup_avg:AVERAGE:%4.1lf%s Avg,',
2156 'GPRINT:pg_n_tup_max:MAX:%4.1lf%s Max,',
2157 'GPRINT:pg_n_tup_avg:LAST:%4.1lf%s Last'],
2158 pg_numbackends => ['DEF:pg_numbackends_avg={file}:value:AVERAGE',
2159 'DEF:pg_numbackends_min={file}:value:MIN',
2160 'DEF:pg_numbackends_max={file}:value:MAX',
2161 "AREA:pg_numbackends_max#$HalfBlue",
2162 "AREA:pg_numbackends_min#$Canvas",
2163 "LINE1:pg_numbackends_avg#$FullBlue:Backends",
2164 'GPRINT:pg_numbackends_min:MIN:%4.1lf%s Min,',
2165 'GPRINT:pg_numbackends_avg:AVERAGE:%4.1lf%s Avg,',
2166 'GPRINT:pg_numbackends_max:MAX:%4.1lf%s Max,',
2167 'GPRINT:pg_numbackends_avg:LAST:%4.1lf%s Last'],
2168 pg_scan => ['DEF:pg_scan_avg={file}:value:AVERAGE',
2169 'DEF:pg_scan_min={file}:value:MIN',
2170 'DEF:pg_scan_max={file}:value:MAX',
2171 "AREA:pg_scan_max#$HalfBlue",
2172 "AREA:pg_scan_min#$Canvas",
2173 "LINE1:pg_scan_avg#$FullBlue:Scans",
2174 'GPRINT:pg_scan_min:MIN:%4.1lf%s Min,',
2175 'GPRINT:pg_scan_avg:AVERAGE:%4.1lf%s Avg,',
2176 'GPRINT:pg_scan_max:MAX:%4.1lf%s Max,',
2177 'GPRINT:pg_scan_avg:LAST:%4.1lf%s Last'],
2178 pg_xact => ['DEF:pg_xact_avg={file}:value:AVERAGE',
2179 'DEF:pg_xact_min={file}:value:MIN',
2180 'DEF:pg_xact_max={file}:value:MAX',
2181 "AREA:pg_xact_max#$HalfBlue",
2182 "AREA:pg_xact_min#$Canvas",
2183 "LINE1:pg_xact_avg#$FullBlue:Transactions",
2184 'GPRINT:pg_xact_min:MIN:%4.1lf%s Min,',
2185 'GPRINT:pg_xact_avg:AVERAGE:%4.1lf%s Avg,',
2186 'GPRINT:pg_xact_max:MAX:%4.1lf%s Max,',
2187 'GPRINT:pg_xact_avg:LAST:%4.1lf%s Last'],
2188 power => ['-v', 'Watt',
2189 'DEF:avg={file}:value:AVERAGE',
2190 'DEF:min={file}:value:MIN',
2191 'DEF:max={file}:value:MAX',
2192 "AREA:max#$HalfBlue",
2194 "LINE1:avg#$FullBlue:Watt",
2195 'GPRINT:min:MIN:%5.1lf%sW Min,',
2196 'GPRINT:avg:AVERAGE:%5.1lf%sW Avg,',
2197 'GPRINT:max:MAX:%5.1lf%sW Max,',
2198 'GPRINT:avg:LAST:%5.1lf%sW Last\l'
2201 "DEF:running_avg={file}:running:AVERAGE",
2202 "DEF:running_min={file}:running:MIN",
2203 "DEF:running_max={file}:running:MAX",
2204 "DEF:sleeping_avg={file}:sleeping:AVERAGE",
2205 "DEF:sleeping_min={file}:sleeping:MIN",
2206 "DEF:sleeping_max={file}:sleeping:MAX",
2207 "DEF:zombies_avg={file}:zombies:AVERAGE",
2208 "DEF:zombies_min={file}:zombies:MIN",
2209 "DEF:zombies_max={file}:zombies:MAX",
2210 "DEF:stopped_avg={file}:stopped:AVERAGE",
2211 "DEF:stopped_min={file}:stopped:MIN",
2212 "DEF:stopped_max={file}:stopped:MAX",
2213 "DEF:paging_avg={file}:paging:AVERAGE",
2214 "DEF:paging_min={file}:paging:MIN",
2215 "DEF:paging_max={file}:paging:MAX",
2216 "DEF:blocked_avg={file}:blocked:AVERAGE",
2217 "DEF:blocked_min={file}:blocked:MIN",
2218 "DEF:blocked_max={file}:blocked:MAX",
2219 'CDEF:paging_acc=sleeping_avg,running_avg,stopped_avg,zombies_avg,blocked_avg,paging_avg,+,+,+,+,+',
2220 'CDEF:blocked_acc=sleeping_avg,running_avg,stopped_avg,zombies_avg,blocked_avg,+,+,+,+',
2221 'CDEF:zombies_acc=sleeping_avg,running_avg,stopped_avg,zombies_avg,+,+,+',
2222 'CDEF:stopped_acc=sleeping_avg,running_avg,stopped_avg,+,+',
2223 'CDEF:running_acc=sleeping_avg,running_avg,+',
2224 'CDEF:sleeping_acc=sleeping_avg',
2225 "AREA:paging_acc#$HalfYellow",
2226 "AREA:blocked_acc#$HalfCyan",
2227 "AREA:zombies_acc#$HalfRed",
2228 "AREA:stopped_acc#$HalfMagenta",
2229 "AREA:running_acc#$HalfGreen",
2230 "AREA:sleeping_acc#$HalfBlue",
2231 "LINE1:paging_acc#$FullYellow:Paging ",
2232 'GPRINT:paging_min:MIN:%5.1lf Min,',
2233 'GPRINT:paging_avg:AVERAGE:%5.1lf Average,',
2234 'GPRINT:paging_max:MAX:%5.1lf Max,',
2235 'GPRINT:paging_avg:LAST:%5.1lf Last\l',
2236 "LINE1:blocked_acc#$FullCyan:Blocked ",
2237 'GPRINT:blocked_min:MIN:%5.1lf Min,',
2238 'GPRINT:blocked_avg:AVERAGE:%5.1lf Average,',
2239 'GPRINT:blocked_max:MAX:%5.1lf Max,',
2240 'GPRINT:blocked_avg:LAST:%5.1lf Last\l',
2241 "LINE1:zombies_acc#$FullRed:Zombies ",
2242 'GPRINT:zombies_min:MIN:%5.1lf Min,',
2243 'GPRINT:zombies_avg:AVERAGE:%5.1lf Average,',
2244 'GPRINT:zombies_max:MAX:%5.1lf Max,',
2245 'GPRINT:zombies_avg:LAST:%5.1lf Last\l',
2246 "LINE1:stopped_acc#$FullMagenta:Stopped ",
2247 'GPRINT:stopped_min:MIN:%5.1lf Min,',
2248 'GPRINT:stopped_avg:AVERAGE:%5.1lf Average,',
2249 'GPRINT:stopped_max:MAX:%5.1lf Max,',
2250 'GPRINT:stopped_avg:LAST:%5.1lf Last\l',
2251 "LINE1:running_acc#$FullGreen:Running ",
2252 'GPRINT:running_min:MIN:%5.1lf Min,',
2253 'GPRINT:running_avg:AVERAGE:%5.1lf Average,',
2254 'GPRINT:running_max:MAX:%5.1lf Max,',
2255 'GPRINT:running_avg:LAST:%5.1lf Last\l',
2256 "LINE1:sleeping_acc#$FullBlue:Sleeping",
2257 'GPRINT:sleeping_min:MIN:%5.1lf Min,',
2258 'GPRINT:sleeping_avg:AVERAGE:%5.1lf Average,',
2259 'GPRINT:sleeping_max:MAX:%5.1lf Max,',
2260 'GPRINT:sleeping_avg:LAST:%5.1lf Last\l'
2262 ps_count => ['-v', 'Processes',
2263 'DEF:procs_avg={file}:processes:AVERAGE',
2264 'DEF:procs_min={file}:processes:MIN',
2265 'DEF:procs_max={file}:processes:MAX',
2266 'DEF:thrds_avg={file}:threads:AVERAGE',
2267 'DEF:thrds_min={file}:threads:MIN',
2268 'DEF:thrds_max={file}:threads:MAX',
2269 "AREA:thrds_avg#$HalfBlue",
2270 "AREA:procs_avg#$HalfRed",
2271 "LINE1:thrds_avg#$FullBlue:Threads ",
2272 'GPRINT:thrds_min:MIN:%5.1lf Min,',
2273 'GPRINT:thrds_avg:AVERAGE:%5.1lf Avg,',
2274 'GPRINT:thrds_max:MAX:%5.1lf Max,',
2275 'GPRINT:thrds_avg:LAST:%5.1lf Last\l',
2276 "LINE1:procs_avg#$FullRed:Processes",
2277 'GPRINT:procs_min:MIN:%5.1lf Min,',
2278 'GPRINT:procs_avg:AVERAGE:%5.1lf Avg,',
2279 'GPRINT:procs_max:MAX:%5.1lf Max,',
2280 'GPRINT:procs_avg:LAST:%5.1lf Last\l'
2282 ps_cputime => ['-v', 'Jiffies',
2283 'DEF:user_avg_raw={file}:user:AVERAGE',
2284 'DEF:user_min_raw={file}:user:MIN',
2285 'DEF:user_max_raw={file}:user:MAX',
2286 'DEF:syst_avg_raw={file}:syst:AVERAGE',
2287 'DEF:syst_min_raw={file}:syst:MIN',
2288 'DEF:syst_max_raw={file}:syst:MAX',
2289 'CDEF:user_avg=user_avg_raw,1000000,/',
2290 'CDEF:user_min=user_min_raw,1000000,/',
2291 'CDEF:user_max=user_max_raw,1000000,/',
2292 'CDEF:syst_avg=syst_avg_raw,1000000,/',
2293 'CDEF:syst_min=syst_min_raw,1000000,/',
2294 'CDEF:syst_max=syst_max_raw,1000000,/',
2295 'CDEF:user_syst=syst_avg,UN,0,syst_avg,IF,user_avg,+',
2296 "AREA:user_syst#$HalfBlue",
2297 "AREA:syst_avg#$HalfRed",
2298 "LINE1:user_syst#$FullBlue:User ",
2299 'GPRINT:user_min:MIN:%5.1lf%s Min,',
2300 'GPRINT:user_avg:AVERAGE:%5.1lf%s Avg,',
2301 'GPRINT:user_max:MAX:%5.1lf%s Max,',
2302 'GPRINT:user_avg:LAST:%5.1lf%s Last\l',
2303 "LINE1:syst_avg#$FullRed:System",
2304 'GPRINT:syst_min:MIN:%5.1lf%s Min,',
2305 'GPRINT:syst_avg:AVERAGE:%5.1lf%s Avg,',
2306 'GPRINT:syst_max:MAX:%5.1lf%s Max,',
2307 'GPRINT:syst_avg:LAST:%5.1lf%s Last\l'
2309 ps_pagefaults => ['-v', 'Pagefaults/s',
2310 'DEF:minor_avg={file}:minflt:AVERAGE',
2311 'DEF:minor_min={file}:minflt:MIN',
2312 'DEF:minor_max={file}:minflt:MAX',
2313 'DEF:major_avg={file}:majflt:AVERAGE',
2314 'DEF:major_min={file}:majflt:MIN',
2315 'DEF:major_max={file}:majflt:MAX',
2316 'CDEF:minor_major=major_avg,UN,0,major_avg,IF,minor_avg,+',
2317 "AREA:minor_major#$HalfBlue",
2318 "AREA:major_avg#$HalfRed",
2319 "LINE1:minor_major#$FullBlue:Minor",
2320 'GPRINT:minor_min:MIN:%5.1lf%s Min,',
2321 'GPRINT:minor_avg:AVERAGE:%5.1lf%s Avg,',
2322 'GPRINT:minor_max:MAX:%5.1lf%s Max,',
2323 'GPRINT:minor_avg:LAST:%5.1lf%s Last\l',
2324 "LINE1:major_avg#$FullRed:Major",
2325 'GPRINT:major_min:MIN:%5.1lf%s Min,',
2326 'GPRINT:major_avg:AVERAGE:%5.1lf%s Avg,',
2327 'GPRINT:major_max:MAX:%5.1lf%s Max,',
2328 'GPRINT:major_avg:LAST:%5.1lf%s Last\l'
2330 ps_rss => ['-v', 'Bytes',
2331 'DEF:avg={file}:value:AVERAGE',
2332 'DEF:min={file}:value:MIN',
2333 'DEF:max={file}:value:MAX',
2334 "AREA:avg#$HalfBlue",
2335 "LINE1:avg#$FullBlue:RSS",
2336 'GPRINT:min:MIN:%5.1lf%s Min,',
2337 'GPRINT:avg:AVERAGE:%5.1lf%s Avg,',
2338 'GPRINT:max:MAX:%5.1lf%s Max,',
2339 'GPRINT:avg:LAST:%5.1lf%s Last\l'
2341 ps_state => ['-v', 'Processes',
2342 'DEF:avg={file}:value:AVERAGE',
2343 'DEF:min={file}:value:MIN',
2344 'DEF:max={file}:value:MAX',
2345 "AREA:max#$HalfBlue",
2347 "LINE1:avg#$FullBlue:Processes",
2348 'GPRINT:min:MIN:%6.2lf Min,',
2349 'GPRINT:avg:AVERAGE:%6.2lf Avg,',
2350 'GPRINT:max:MAX:%6.2lf Max,',
2351 'GPRINT:avg:LAST:%6.2lf Last\l'
2353 signal_noise => ['-v', 'dBm',
2354 'DEF:avg={file}:value:AVERAGE',
2355 'DEF:min={file}:value:MIN',
2356 'DEF:max={file}:value:MAX',
2357 "AREA:max#$HalfBlue",
2359 "LINE1:avg#$FullBlue:Noise",
2360 'GPRINT:min:MIN:%5.1lf%sdBm Min,',
2361 'GPRINT:avg:AVERAGE:%5.1lf%sdBm Avg,',
2362 'GPRINT:max:MAX:%5.1lf%sdBm Max,',
2363 'GPRINT:avg:LAST:%5.1lf%sdBm Last\l'
2365 signal_power => ['-v', 'dBm',
2366 'DEF:avg={file}:value:AVERAGE',
2367 'DEF:min={file}:value:MIN',
2368 'DEF:max={file}:value:MAX',
2369 "AREA:max#$HalfBlue",
2371 "LINE1:avg#$FullBlue:Power",
2372 'GPRINT:min:MIN:%5.1lf%sdBm Min,',
2373 'GPRINT:avg:AVERAGE:%5.1lf%sdBm Avg,',
2374 'GPRINT:max:MAX:%5.1lf%sdBm Max,',
2375 'GPRINT:avg:LAST:%5.1lf%sdBm Last\l'
2377 signal_quality => ['-v', '%',
2378 'DEF:avg={file}:value:AVERAGE',
2379 'DEF:min={file}:value:MIN',
2380 'DEF:max={file}:value:MAX',
2381 "AREA:max#$HalfBlue",
2383 "LINE1:avg#$FullBlue:Quality",
2384 'GPRINT:min:MIN:%5.1lf%s%% Min,',
2385 'GPRINT:avg:AVERAGE:%5.1lf%s%% Avg,',
2386 'GPRINT:max:MAX:%5.1lf%s%% Max,',
2387 'GPRINT:avg:LAST:%5.1lf%s%% Last\l'
2389 swap => ['-v', 'Bytes', '-b', '1024',
2390 'DEF:avg={file}:value:AVERAGE',
2391 'DEF:min={file}:value:MIN',
2392 'DEF:max={file}:value:MAX',
2393 "AREA:max#$HalfBlue",
2395 "LINE1:avg#$FullBlue:Bytes",
2396 'GPRINT:min:MIN:%6.2lf%sByte Min,',
2397 'GPRINT:avg:AVERAGE:%6.2lf%sByte Avg,',
2398 'GPRINT:max:MAX:%6.2lf%sByte Max,',
2399 'GPRINT:avg:LAST:%6.2lf%sByte Last\l'
2402 'DEF:used_avg={file}:used:AVERAGE',
2403 'DEF:used_min={file}:used:MIN',
2404 'DEF:used_max={file}:used:MAX',
2405 'DEF:free_avg={file}:free:AVERAGE',
2406 'DEF:free_min={file}:free:MIN',
2407 'DEF:free_max={file}:free:MAX',
2408 'DEF:cach_avg={file}:cached:AVERAGE',
2409 'DEF:cach_min={file}:cached:MIN',
2410 'DEF:cach_max={file}:cached:MAX',
2411 'DEF:resv_avg={file}:resv:AVERAGE',
2412 'DEF:resv_min={file}:resv:MIN',
2413 'DEF:resv_max={file}:resv:MAX',
2414 'CDEF:cach_avg_notnull=cach_avg,UN,0,cach_avg,IF',
2415 'CDEF:resv_avg_notnull=resv_avg,UN,0,resv_avg,IF',
2416 'CDEF:used_acc=used_avg',
2417 'CDEF:resv_acc=used_acc,resv_avg_notnull,+',
2418 'CDEF:cach_acc=resv_acc,cach_avg_notnull,+',
2419 'CDEF:free_acc=cach_acc,free_avg,+',
2420 "AREA:free_acc#$HalfGreen",
2421 "AREA:cach_acc#$HalfBlue",
2422 "AREA:resv_acc#$HalfYellow",
2423 "AREA:used_acc#$HalfRed",
2424 "LINE1:free_acc#$FullGreen:Free ",
2425 'GPRINT:free_min:MIN:%5.1lf%s Min,',
2426 'GPRINT:free_avg:AVERAGE:%5.1lf%s Avg,',
2427 'GPRINT:free_max:MAX:%5.1lf%s Max,',
2428 'GPRINT:free_avg:LAST:%5.1lf%s Last\n',
2429 "LINE1:cach_acc#$FullBlue:Cached ",
2430 'GPRINT:cach_min:MIN:%5.1lf%s Min,',
2431 'GPRINT:cach_avg:AVERAGE:%5.1lf%s Avg,',
2432 'GPRINT:cach_max:MAX:%5.1lf%s Max,',
2433 'GPRINT:cach_avg:LAST:%5.1lf%s Last\l',
2434 "LINE1:resv_acc#$FullYellow:Reserved",
2435 'GPRINT:resv_min:MIN:%5.1lf%s Min,',
2436 'GPRINT:resv_avg:AVERAGE:%5.1lf%s Avg,',
2437 'GPRINT:resv_max:MAX:%5.1lf%s Max,',
2438 'GPRINT:resv_avg:LAST:%5.1lf%s Last\n',
2439 "LINE1:used_acc#$FullRed:Used ",
2440 'GPRINT:used_min:MIN:%5.1lf%s Min,',
2441 'GPRINT:used_avg:AVERAGE:%5.1lf%s Avg,',
2442 'GPRINT:used_max:MAX:%5.1lf%s Max,',
2443 'GPRINT:used_avg:LAST:%5.1lf%s Last\l'
2445 tcp_connections => ['-v', 'Connections',
2446 'DEF:avg={file}:value:AVERAGE',
2447 'DEF:min={file}:value:MIN',
2448 'DEF:max={file}:value:MAX',
2449 "AREA:max#$HalfBlue",
2451 "LINE1:avg#$FullBlue:Connections",
2452 'GPRINT:min:MIN:%4.1lf Min,',
2453 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
2454 'GPRINT:max:MAX:%4.1lf Max,',
2455 'GPRINT:avg:LAST:%4.1lf Last\l'
2457 temperature => ['-v', 'Celsius',
2458 'DEF:temp_avg={file}:value:AVERAGE',
2459 'DEF:temp_min={file}:value:MIN',
2460 'DEF:temp_max={file}:value:MAX',
2461 'CDEF:average=temp_avg,0.2,*,PREV,UN,temp_avg,PREV,IF,0.8,*,+',
2462 "AREA:temp_max#$HalfRed",
2463 "AREA:temp_min#$Canvas",
2464 "LINE1:temp_avg#$FullRed:Temperature",
2465 'GPRINT:temp_min:MIN:%4.1lf Min,',
2466 'GPRINT:temp_avg:AVERAGE:%4.1lf Avg,',
2467 'GPRINT:temp_max:MAX:%4.1lf Max,',
2468 'GPRINT:temp_avg:LAST:%4.1lf Last\l'
2470 timeleft => ['-v', 'Minutes',
2471 'DEF:avg={file}:timeleft:AVERAGE',
2472 'DEF:min={file}:timeleft:MIN',
2473 'DEF:max={file}:timeleft:MAX',
2474 "AREA:max#$HalfBlue",
2476 "LINE1:avg#$FullBlue:Time left [min]",
2477 'GPRINT:min:MIN:%5.1lf%s Min,',
2478 'GPRINT:avg:AVERAGE:%5.1lf%s Avg,',
2479 'GPRINT:max:MAX:%5.1lf%s Max,',
2480 'GPRINT:avg:LAST:%5.1lf%s Last\l'
2482 time_offset => [ # NTPd
2483 'DEF:s_avg={file}:seconds:AVERAGE',
2484 'DEF:s_min={file}:seconds:MIN',
2485 'DEF:s_max={file}:seconds:MAX',
2486 "AREA:s_max#$HalfBlue",
2487 "AREA:s_min#$Canvas",
2488 "LINE1:s_avg#$FullBlue:{inst}",
2489 'GPRINT:s_min:MIN:%7.3lf%s Min,',
2490 'GPRINT:s_avg:AVERAGE:%7.3lf%s Avg,',
2491 'GPRINT:s_max:MAX:%7.3lf%s Max,',
2492 'GPRINT:s_avg:LAST:%7.3lf%s Last'
2494 if_octets => ['-v', 'Bits/s', '-l', '0',
2495 'DEF:out_min_raw={file}:tx:MIN',
2496 'DEF:out_avg_raw={file}:tx:AVERAGE',
2497 'DEF:out_max_raw={file}:tx:MAX',
2498 'DEF:inc_min_raw={file}:rx:MIN',
2499 'DEF:inc_avg_raw={file}:rx:AVERAGE',
2500 'DEF:inc_max_raw={file}:rx:MAX',
2501 'CDEF:out_min=out_min_raw,8,*',
2502 'CDEF:out_avg=out_avg_raw,8,*',
2503 'CDEF:out_max=out_max_raw,8,*',
2504 'CDEF:inc_min=inc_min_raw,8,*',
2505 'CDEF:inc_avg=inc_avg_raw,8,*',
2506 'CDEF:inc_max=inc_max_raw,8,*',
2507 'CDEF:overlap=out_avg,inc_avg,GT,inc_avg,out_avg,IF',
2508 'CDEF:mytime=out_avg_raw,TIME,TIME,IF',
2509 'CDEF:sample_len_raw=mytime,PREV(mytime),-',
2510 'CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF',
2511 'CDEF:out_avg_sample=out_avg_raw,UN,0,out_avg_raw,IF,sample_len,*',
2512 'CDEF:out_avg_sum=PREV,UN,0,PREV,IF,out_avg_sample,+',
2513 'CDEF:inc_avg_sample=inc_avg_raw,UN,0,inc_avg_raw,IF,sample_len,*',
2514 'CDEF:inc_avg_sum=PREV,UN,0,PREV,IF,inc_avg_sample,+',
2515 "AREA:out_avg#$HalfGreen",
2516 "AREA:inc_avg#$HalfBlue",
2517 "AREA:overlap#$HalfBlueGreen",
2518 "LINE1:out_avg#$FullGreen:Outgoing",
2519 'GPRINT:out_avg:AVERAGE:%5.1lf%s Avg,',
2520 'GPRINT:out_max:MAX:%5.1lf%s Max,',
2521 'GPRINT:out_avg:LAST:%5.1lf%s Last',
2522 'GPRINT:out_avg_sum:LAST:(ca. %5.1lf%sB Total)\l',
2523 "LINE1:inc_avg#$FullBlue:Incoming",
2524 #'GPRINT:inc_min:MIN:%5.1lf %s Min,',
2525 'GPRINT:inc_avg:AVERAGE:%5.1lf%s Avg,',
2526 'GPRINT:inc_max:MAX:%5.1lf%s Max,',
2527 'GPRINT:inc_avg:LAST:%5.1lf%s Last',
2528 'GPRINT:inc_avg_sum:LAST:(ca. %5.1lf%sB Total)\l'
2531 'DEF:cpufreq_avg={file}:value:AVERAGE',
2532 'DEF:cpufreq_min={file}:value:MIN',
2533 'DEF:cpufreq_max={file}:value:MAX',
2534 "AREA:cpufreq_max#$HalfBlue",
2535 "AREA:cpufreq_min#$Canvas",
2536 "LINE1:cpufreq_avg#$FullBlue:Frequency",
2537 'GPRINT:cpufreq_min:MIN:%5.1lf%s Min,',
2538 'GPRINT:cpufreq_avg:AVERAGE:%5.1lf%s Avg,',
2539 'GPRINT:cpufreq_max:MAX:%5.1lf%s Max,',
2540 'GPRINT:cpufreq_avg:LAST:%5.1lf%s Last\l'
2543 'DEF:multimeter_avg={file}:value:AVERAGE',
2544 'DEF:multimeter_min={file}:value:MIN',
2545 'DEF:multimeter_max={file}:value:MAX',
2546 "AREA:multimeter_max#$HalfBlue",
2547 "AREA:multimeter_min#$Canvas",
2548 "LINE1:multimeter_avg#$FullBlue:Multimeter",
2549 'GPRINT:multimeter_min:MIN:%4.1lf Min,',
2550 'GPRINT:multimeter_avg:AVERAGE:%4.1lf Average,',
2551 'GPRINT:multimeter_max:MAX:%4.1lf Max,',
2552 'GPRINT:multimeter_avg:LAST:%4.1lf Last\l'
2554 users => ['-v', 'Users',
2555 'DEF:users_avg={file}:users:AVERAGE',
2556 'DEF:users_min={file}:users:MIN',
2557 'DEF:users_max={file}:users:MAX',
2558 "AREA:users_max#$HalfBlue",
2559 "AREA:users_min#$Canvas",
2560 "LINE1:users_avg#$FullBlue:Users",
2561 'GPRINT:users_min:MIN:%4.1lf Min,',
2562 'GPRINT:users_avg:AVERAGE:%4.1lf Average,',
2563 'GPRINT:users_max:MAX:%4.1lf Max,',
2564 'GPRINT:users_avg:LAST:%4.1lf Last\l'
2566 voltage => ['-v', 'Voltage',
2567 'DEF:avg={file}:value:AVERAGE',
2568 'DEF:min={file}:value:MIN',
2569 'DEF:max={file}:value:MAX',
2570 "AREA:max#$HalfBlue",
2572 "LINE1:avg#$FullBlue:Voltage",
2573 'GPRINT:min:MIN:%5.1lf%sV Min,',
2574 'GPRINT:avg:AVERAGE:%5.1lf%sV Avg,',
2575 'GPRINT:max:MAX:%5.1lf%sV Max,',
2576 'GPRINT:avg:LAST:%5.1lf%sV Last\l'
2579 "DEF:avg={file}:value:AVERAGE",
2580 "DEF:min={file}:value:MIN",
2581 "DEF:max={file}:value:MAX",
2582 "AREA:max#$HalfBlue",
2584 "LINE1:avg#$FullBlue:Threads",
2585 'GPRINT:min:MIN:%5.1lf Min,',
2586 'GPRINT:avg:AVERAGE:%5.1lf Avg.,',
2587 'GPRINT:max:MAX:%5.1lf Max,',
2588 'GPRINT:avg:LAST:%5.1lf Last\l',
2590 vs_memory => ['-b', '1024', '-v', 'Bytes',
2591 "DEF:avg={file}:value:AVERAGE",
2592 "DEF:min={file}:value:MIN",
2593 "DEF:max={file}:value:MAX",
2594 "AREA:max#$HalfBlue",
2596 "LINE1:avg#$FullBlue:",
2597 'GPRINT:min:MIN:%5.1lf%sbytes Min,',
2598 'GPRINT:avg:AVERAGE:%5.1lf%sbytes Avg.,',
2599 'GPRINT:max:MAX:%5.1lf%sbytes Max,',
2600 'GPRINT:avg:LAST:%5.1lf%sbytes Last\l',
2603 "DEF:avg={file}:value:AVERAGE",
2604 "DEF:min={file}:value:MIN",
2605 "DEF:max={file}:value:MAX",
2606 "AREA:max#$HalfBlue",
2608 "LINE1:avg#$FullBlue:Processes",
2609 'GPRINT:min:MIN:%5.1lf Min,',
2610 'GPRINT:avg:AVERAGE:%5.1lf Avg.,',
2611 'GPRINT:max:MAX:%5.1lf Max,',
2612 'GPRINT:avg:LAST:%5.1lf Last\l',
2614 vmpage_number => ['-v', 'Pages',
2615 'DEF:avg={file}:value:AVERAGE',
2616 'DEF:min={file}:value:MIN',
2617 'DEF:max={file}:value:MAX',
2618 "AREA:max#$HalfBlue",
2620 "LINE1:avg#$FullBlue:Number",
2621 'GPRINT:min:MIN:%4.1lf Min,',
2622 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
2623 'GPRINT:max:MAX:%4.1lf Max,',
2624 'GPRINT:avg:LAST:%4.1lf Last\l'
2627 "DEF:minf_avg={file}:minflt:AVERAGE",
2628 "DEF:minf_min={file}:minflt:MIN",
2629 "DEF:minf_max={file}:minflt:MAX",
2630 "DEF:majf_avg={file}:majflt:AVERAGE",
2631 "DEF:majf_min={file}:majflt:MIN",
2632 "DEF:majf_max={file}:majflt:MAX",
2633 'CDEF:overlap=majf_avg,minf_avg,GT,minf_avg,majf_avg,IF',
2634 "AREA:majf_avg#$HalfGreen",
2635 "AREA:minf_avg#$HalfBlue",
2636 "AREA:overlap#$HalfBlueGreen",
2637 "LINE1:majf_avg#$FullGreen:Major",
2638 'GPRINT:majf_min:MIN:%5.1lf%s Min,',
2639 'GPRINT:majf_avg:AVERAGE:%5.1lf%s Avg,',
2640 'GPRINT:majf_max:MAX:%5.1lf%s Max,',
2641 'GPRINT:majf_avg:LAST:%5.1lf%s Last\l',
2642 "LINE1:minf_avg#$FullBlue:Minor",
2643 'GPRINT:minf_min:MIN:%5.1lf%s Min,',
2644 'GPRINT:minf_avg:AVERAGE:%5.1lf%s Avg,',
2645 'GPRINT:minf_max:MAX:%5.1lf%s Max,',
2646 'GPRINT:minf_avg:LAST:%5.1lf%s Last\l'
2649 "DEF:rpag_avg={file}:in:AVERAGE",
2650 "DEF:rpag_min={file}:in:MIN",
2651 "DEF:rpag_max={file}:in:MAX",
2652 "DEF:wpag_avg={file}:out:AVERAGE",
2653 "DEF:wpag_min={file}:out:MIN",
2654 "DEF:wpag_max={file}:out:MAX",
2655 'CDEF:overlap=wpag_avg,rpag_avg,GT,rpag_avg,wpag_avg,IF',
2656 "AREA:wpag_avg#$HalfGreen",
2657 "AREA:rpag_avg#$HalfBlue",
2658 "AREA:overlap#$HalfBlueGreen",
2659 "LINE1:wpag_avg#$FullGreen:OUT",
2660 'GPRINT:wpag_min:MIN:%5.1lf%s Min,',
2661 'GPRINT:wpag_avg:AVERAGE:%5.1lf%s Avg,',
2662 'GPRINT:wpag_max:MAX:%5.1lf%s Max,',
2663 'GPRINT:wpag_avg:LAST:%5.1lf%s Last\l',
2664 "LINE1:rpag_avg#$FullBlue:IN ",
2665 'GPRINT:rpag_min:MIN:%5.1lf%s Min,',
2666 'GPRINT:rpag_avg:AVERAGE:%5.1lf%s Avg,',
2667 'GPRINT:rpag_max:MAX:%5.1lf%s Max,',
2668 'GPRINT:rpag_avg:LAST:%5.1lf%s Last\l'
2670 vmpage_action => ['-v', 'Pages',
2671 'DEF:avg={file}:value:AVERAGE',
2672 'DEF:min={file}:value:MIN',
2673 'DEF:max={file}:value:MAX',
2674 "AREA:max#$HalfBlue",
2676 "LINE1:avg#$FullBlue:Number",
2677 'GPRINT:min:MIN:%4.1lf Min,',
2678 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
2679 'GPRINT:max:MAX:%4.1lf Max,',
2680 'GPRINT:avg:LAST:%4.1lf Last\l'
2682 virt_cpu_total => ['-v', 'Milliseconds',
2683 'DEF:avg_raw={file}:ns:AVERAGE',
2684 'DEF:min_raw={file}:ns:MIN',
2685 'DEF:max_raw={file}:ns:MAX',
2686 'CDEF:avg=avg_raw,1000000,/',
2687 'CDEF:min=min_raw,1000000,/',
2688 'CDEF:max=max_raw,1000000,/',
2689 "AREA:avg#$HalfBlue",
2690 "LINE1:avg#$FullBlue:CPU time",
2691 'GPRINT:min:MIN:%4.1lf Min,',
2692 'GPRINT:avg:AVERAGE:%4.1lf Avg,',
2693 'GPRINT:max:MAX:%4.1lf Max,',
2694 'GPRINT:avg:LAST:%4.1lf Last\l'
2697 $GraphDefs->{'if_multicast'} = $GraphDefs->{'ipt_packets'};
2698 $GraphDefs->{'if_tx_errors'} = $GraphDefs->{'if_rx_errors'};
2699 $GraphDefs->{'dns_qtype'} = $GraphDefs->{'dns_opcode'};
2700 $GraphDefs->{'dns_rcode'} = $GraphDefs->{'dns_opcode'};
2701 $GraphDefs->{'vmpage_io-memory'} = $GraphDefs->{'vmpage_io'};
2702 $GraphDefs->{'vmpage_io-swap'} = $GraphDefs->{'vmpage_io'};
2703 $GraphDefs->{'virt_cpu_total'} = $GraphDefs->{'virt_cpu_total'};
2705 $MetaGraphDefs->{'cpu'} = \&meta_graph_cpu;
2706 $MetaGraphDefs->{'df_complex'} = \&meta_graph_df;
2707 $MetaGraphDefs->{'dns_qtype'} = \&meta_graph_dns;
2708 $MetaGraphDefs->{'dns_rcode'} = \&meta_graph_dns;
2709 $MetaGraphDefs->{'if_rx_errors'} = \&meta_graph_if_rx_errors;
2710 $MetaGraphDefs->{'if_tx_errors'} = \&meta_graph_if_rx_errors;
2711 $MetaGraphDefs->{'memory'} = \&meta_graph_memory;
2712 $MetaGraphDefs->{'nfs_procedure'} = \&meta_graph_nfs_procedure;
2713 $MetaGraphDefs->{'ps_state'} = \&meta_graph_ps_state;
2714 $MetaGraphDefs->{'swap'} = \&meta_graph_swap;
2715 $MetaGraphDefs->{'mysql_commands'} = \&meta_graph_mysql_commands;
2716 $MetaGraphDefs->{'mysql_handler'} = \&meta_graph_mysql_commands;
2717 $MetaGraphDefs->{'tcp_connections'} = \&meta_graph_tcp_connections;
2718 $MetaGraphDefs->{'vmpage_number'} = \&meta_graph_vmpage_number;
2719 $MetaGraphDefs->{'vmpage_action'} = \&meta_graph_vmpage_action;
2720 } # load_graph_definitions
2722 sub meta_graph_generic_stack
2724 confess ("Wrong number of arguments") if (@_ != 2);
2727 my $sources = shift;
2730 my $timespan_str = _get_param_timespan ();
2731 my $timespan_int = (-1) * $ValidTimespan->{$timespan_str};
2733 $opts->{'title'} ||= 'Unknown title';
2734 $opts->{'rrd_opts'} ||= [];
2735 $opts->{'colors'} ||= {};
2737 my @cmd = ('-', '-a', 'PNG', '-s', $timespan_int,
2738 '-t', $opts->{'title'} || 'Unknown title',
2739 @RRDDefaultArgs, @{$opts->{'rrd_opts'}});
2741 my $max_inst_name = 0;
2744 for ($i = 0; $i < @$sources; $i++)
2746 my $tmp = $sources->[$i]->{'name'};
2747 $tmp =~ tr/A-Za-z0-9\-_/_/c;
2748 $vnames[$i] = $i . $tmp;
2751 for ($i = 0; $i < @$sources; $i++)
2753 my $inst_data = $sources->[$i];
2754 my $inst_name = $inst_data->{'name'} || confess;
2755 my $file = $inst_data->{'file'} || confess;
2756 my $vname = $vnames[$i];
2758 if (length ($inst_name) > $max_inst_name)
2760 $max_inst_name = length ($inst_name);
2763 confess ("No such file: $file") if (!-e $file);
2766 qq#DEF:${vname}_min=$file:value:MIN#,
2767 qq#DEF:${vname}_avg=$file:value:AVERAGE#,
2768 qq#DEF:${vname}_max=$file:value:MAX#,
2769 qq#CDEF:${vname}_nnl=${vname}_avg,UN,0,${vname}_avg,IF#);
2773 my $vname = $vnames[@vnames - 1];
2775 push (@cmd, qq#CDEF:${vname}_stk=${vname}_nnl#);
2777 for (my $i = 1; $i < @$sources; $i++)
2779 my $vname0 = $vnames[@vnames - ($i + 1)];
2780 my $vname1 = $vnames[@vnames - $i];
2782 push (@cmd, qq#CDEF:${vname0}_stk=${vname0}_nnl,${vname1}_stk,+#);
2785 for (my $i = 0; $i < @$sources; $i++)
2787 my $inst_data = $sources->[$i];
2788 my $inst_name = $inst_data->{'name'};
2790 my $vname = $vnames[$i];
2792 my $legend = sprintf ('%-*s', $max_inst_name, $inst_name);
2797 my $number_format = $opts->{'number_format'} || '%6.1lf';
2799 if (exists ($opts->{'colors'}{$inst_name}))
2801 $line_color = $opts->{'colors'}{$inst_name};
2802 $area_color = _string_to_color ($line_color);
2806 $area_color = _get_random_color ();
2807 $line_color = _color_to_string ($area_color);
2809 $area_color = _color_to_string (_get_faded_color ($area_color));
2811 push (@cmd, qq(AREA:${vname}_stk#$area_color),
2812 qq(LINE1:${vname}_stk#$line_color:$legend),
2813 qq(GPRINT:${vname}_min:MIN:$number_format Min,),
2814 qq(GPRINT:${vname}_avg:AVERAGE:$number_format Avg,),
2815 qq(GPRINT:${vname}_max:MAX:$number_format Max,),
2816 qq(GPRINT:${vname}_avg:LAST:$number_format Last\\l),
2821 if (my $errmsg = RRDs::error ())
2823 confess ("RRDs::graph: $errmsg");
2825 } # meta_graph_generic_stack
2829 confess ("Wrong number of arguments") if (@_ != 5);
2833 my $plugin_instance = shift;
2835 my $type_instances = shift;
2840 $opts->{'title'} = "$host/$plugin"
2841 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
2843 $opts->{'rrd_opts'} = ['-v', 'Percent'];
2853 'system' => 'ff0000',
2854 'softirq' => 'ff00ff',
2855 'interrupt' => 'a000a0',
2859 _custom_sort_arrayref ($type_instances,
2860 [qw(idle nice user wait system softirq interrupt steal)]);
2862 for (@$type_instances)
2866 my $title = $opts->{'title'};
2870 if (-e "$_/$title-$inst.rrd")
2872 $file = "$_/$title-$inst.rrd";
2876 confess ("No file found for $title") if ($file eq '');
2884 } # for (@$type_instances)
2886 return (meta_graph_generic_stack ($opts, $sources));
2891 confess ("Wrong number of arguments") if (@_ != 5);
2895 my $plugin_instance = shift;
2897 my $type_instances = shift;
2902 my $prefix = "$host/$plugin"
2903 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
2905 $opts->{'title'} = "Disk usage $prefix";
2907 $opts->{'number_format'} = '%5.1lf%s';
2908 $opts->{'rrd_opts'} = ['-l', 0, '-b', '1024', '-v', 'Bytes'];
2915 'snap_normal_used' => 'c10640',
2916 'snap_reserve_used' => '820c81',
2917 'snap_reserved' => 'f15aef',
2918 'reserved' => 'ffb000',
2920 'sis_saved' => '00e0e0',
2921 'dedup_saved' => '00c1c1',
2922 'compression_saved' => '00a2a2'
2925 # LVM uses LV names as type-instance; they should sort first
2926 _custom_sort_arrayref ($type_instances,
2927 [qw(compression_saved dedup_saved sis_saved free reserved snap_reserved
2928 snap_reserve_used snap_normal_used used)], 1);
2930 for (@$type_instances)
2937 if (-e "$_/$prefix-$inst.rrd")
2939 $file = "$_/$prefix-$inst.rrd";
2943 confess ("No file found for $prefix") if ($file eq '');
2951 } # for (@$type_instances)
2953 return (meta_graph_generic_stack ($opts, $sources));
2958 confess ("Wrong number of arguments") if (@_ != 5);
2962 my $plugin_instance = shift;
2964 my $type_instances = shift;
2969 $opts->{'title'} = "$host/$plugin"
2970 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
2972 $opts->{'rrd_opts'} = ['-v', 'Queries/s'];
2976 @$type_instances = sort @$type_instances;
2978 $opts->{'colors'} = _get_n_colors ($type_instances);
2980 for (@$type_instances)
2984 my $title = $opts->{'title'};
2988 if (-e "$_/$title-$inst.rrd")
2990 $file = "$_/$title-$inst.rrd";
2994 confess ("No file found for $title") if ($file eq '');
3002 } # for (@$type_instances)
3004 return (meta_graph_generic_stack ($opts, $sources));
3007 sub meta_graph_memory
3009 confess ("Wrong number of arguments") if (@_ != 5);
3013 my $plugin_instance = shift;
3015 my $type_instances = shift;
3020 $opts->{'title'} = "$host/$plugin"
3021 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
3022 $opts->{'number_format'} = '%5.1lf%s';
3024 $opts->{'rrd_opts'} = ['-b', '1024', '-v', 'Bytes'];
3031 'cached' => '0000ff',
3032 'buffered' => 'ffb000',
3036 _custom_sort_arrayref ($type_instances,
3037 [qw(free cached buffered used)]);
3039 for (@$type_instances)
3043 my $title = $opts->{'title'};
3047 if (-e "$_/$title-$inst.rrd")
3049 $file = "$_/$title-$inst.rrd";
3053 confess ("No file found for $title") if ($file eq '');
3061 } # for (@$type_instances)
3063 return (meta_graph_generic_stack ($opts, $sources));
3064 } # meta_graph_memory
3066 sub meta_graph_if_rx_errors
3068 confess ("Wrong number of arguments") if (@_ != 5);
3072 my $plugin_instance = shift;
3074 my $type_instances = shift;
3079 $opts->{'title'} = "$host/$plugin"
3080 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
3081 $opts->{'number_format'} = '%5.2lf';
3082 $opts->{'rrd_opts'} = ['-v', 'Errors/s'];
3086 for (sort @$type_instances)
3090 my $title = $opts->{'title'};
3094 if (-e "$_/$title-$inst.rrd")
3096 $file = "$_/$title-$inst.rrd";
3100 confess ("No file found for $title") if ($file eq '');
3108 } # for (@$type_instances)
3110 return (meta_graph_generic_stack ($opts, $sources));
3111 } # meta_graph_if_rx_errors
3113 sub meta_graph_mysql_commands
3115 confess ("Wrong number of arguments") if (@_ != 5);
3119 my $plugin_instance = shift;
3121 my $type_instances = shift;
3126 $opts->{'title'} = "$host/$plugin"
3127 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
3128 $opts->{'number_format'} = '%5.2lf';
3132 for (sort @$type_instances)
3136 my $title = $opts->{'title'};
3140 if (-e "$_/$title-$inst.rrd")
3142 $file = "$_/$title-$inst.rrd";
3146 confess ("No file found for $title") if ($file eq '');
3154 } # for (@$type_instances)
3156 return (meta_graph_generic_stack ($opts, $sources));
3157 } # meta_graph_mysql_commands
3159 sub meta_graph_nfs_procedure
3161 confess ("Wrong number of arguments") if (@_ != 5);
3165 my $plugin_instance = shift;
3167 my $type_instances = shift;
3172 $opts->{'title'} = "$host/$plugin"
3173 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
3174 $opts->{'number_format'} = '%5.1lf%s';
3178 for (sort @$type_instances)
3182 my $title = $opts->{'title'};
3186 if (-e "$_/$title-$inst.rrd")
3188 $file = "$_/$title-$inst.rrd";
3192 confess ("No file found for $title") if ($file eq '');
3200 } # for (@$type_instances)
3202 return (meta_graph_generic_stack ($opts, $sources));
3203 } # meta_graph_nfs_procedure
3205 sub meta_graph_ps_state
3207 confess ("Wrong number of arguments") if (@_ != 5);
3211 my $plugin_instance = shift;
3213 my $type_instances = shift;
3218 $opts->{'title'} = "$host/$plugin"
3219 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
3220 $opts->{'rrd_opts'} = ['-v', 'Processes'];
3226 'Running' => '00e000',
3227 'Sleeping' => '0000ff',
3228 'Paging' => 'ffb000',
3229 'Zombies' => 'ff0000',
3230 'Blocked' => 'ff00ff',
3231 'Stopped' => 'a000a0'
3234 _custom_sort_arrayref ($type_instances,
3235 [qw(paging blocked zombies stopped running sleeping)]);
3237 for (@$type_instances)
3241 my $title = $opts->{'title'};
3245 if (-e "$_/$title-$inst.rrd")
3247 $file = "$_/$title-$inst.rrd";
3251 confess ("No file found for $title") if ($file eq '');
3255 name => ucfirst ($inst),
3259 } # for (@$type_instances)
3261 return (meta_graph_generic_stack ($opts, $sources));
3262 } # meta_graph_ps_state
3266 confess ("Wrong number of arguments") if (@_ != 5);
3270 my $plugin_instance = shift;
3272 my $type_instances = shift;
3277 $opts->{'title'} = "$host/$plugin"
3278 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
3279 $opts->{'number_format'} = '%5.1lf%s';
3280 $opts->{'rrd_opts'} = ['-v', 'Bytes'];
3287 'Cached' => '0000ff',
3288 'Reserved' => 'ffb000',
3292 _custom_sort_arrayref ($type_instances,
3293 [qw(free cached reserved used)]);
3295 for (@$type_instances)
3299 my $title = $opts->{'title'};
3303 if (-e "$_/$title-$inst.rrd")
3305 $file = "$_/$title-$inst.rrd";
3309 confess ("No file found for $title") if ($file eq '');
3313 name => ucfirst ($inst),
3317 } # for (@$type_instances)
3319 return (meta_graph_generic_stack ($opts, $sources));
3322 sub meta_graph_tcp_connections
3324 confess ("Wrong number of arguments") if (@_ != 5);
3328 my $plugin_instance = shift;
3330 my $type_instances = shift;
3335 $opts->{'title'} = "$host/$plugin"
3336 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
3337 $opts->{'number_format'} = '%6.2lf';
3339 $opts->{'rrd_opts'} = ['-v', 'Connections'];
3345 ESTABLISHED => '00e000',
3346 SYN_SENT => '00e0ff',
3347 SYN_RECV => '00e0a0',
3348 FIN_WAIT1 => 'f000f0',
3349 FIN_WAIT2 => 'f000a0',
3350 TIME_WAIT => 'ffb000',
3352 CLOSE_WAIT => '0000a0',
3353 LAST_ACK => '000080',
3358 _custom_sort_arrayref ($type_instances,
3359 [reverse qw(ESTABLISHED SYN_SENT SYN_RECV FIN_WAIT1 FIN_WAIT2 TIME_WAIT CLOSE
3360 CLOSE_WAIT LAST_ACK CLOSING LISTEN)]);
3362 for (@$type_instances)
3366 my $title = $opts->{'title'};
3370 if (-e "$_/$title-$inst.rrd")
3372 $file = "$_/$title-$inst.rrd";
3376 confess ("No file found for $title") if ($file eq '');
3384 } # for (@$type_instances)
3386 return (meta_graph_generic_stack ($opts, $sources));
3387 } # meta_graph_tcp_connections
3389 sub meta_graph_vmpage_number
3391 confess ("Wrong number of arguments") if (@_ != 5);
3395 my $plugin_instance = shift;
3397 my $type_instances = shift;
3402 $opts->{'title'} = "$host/$plugin"
3403 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
3404 $opts->{'number_format'} = '%6.2lf';
3406 $opts->{'rrd_opts'} = ['-v', 'Pages'];
3412 anon_pages => '00e000',
3415 file_pages => 'f000f0',
3417 page_table_pages => 'ffb000',
3419 unstable => '0000a0',
3420 writeback => 'ff0000',
3423 _custom_sort_arrayref ($type_instances,
3424 [reverse qw(anon_pages bounce dirty file_pages mapped page_table_pages slab unstable writeback)]);
3426 for (@$type_instances)
3430 my $title = $opts->{'title'};
3434 if (-e "$_/$title-$inst.rrd")
3436 $file = "$_/$title-$inst.rrd";
3440 confess ("No file found for $title") if ($file eq '');
3448 } # for (@$type_instances)
3450 return (meta_graph_generic_stack ($opts, $sources));
3451 } # meta_graph_vmpage_number
3453 sub meta_graph_vmpage_action
3455 confess ("Wrong number of arguments") if (@_ != 5);
3459 my $plugin_instance = shift;
3461 my $type_instances = shift;
3466 $opts->{'title'} = "$host/$plugin"
3467 . (defined ($plugin_instance) ? "-$plugin_instance" : '') . "/$type";
3468 $opts->{'number_format'} = '%6.2lf';
3470 $opts->{'rrd_opts'} = ['-v', 'Pages'];
3476 activate => '00e000',
3477 deactivate => '00e0ff',
3481 scan_direct => 'ffb000',
3482 scan_kswapd => '0000f0',
3486 _custom_sort_arrayref ($type_instances,
3487 [reverse qw(activate deactivate alloc free refill scan_direct scan_kswapd steal)]);
3489 for (@$type_instances)
3493 my $title = $opts->{'title'};
3497 if (-e "$_/$title-$inst.rrd")
3499 $file = "$_/$title-$inst.rrd";
3503 confess ("No file found for $title") if ($file eq '');
3511 } # for (@$type_instances)
3513 return (meta_graph_generic_stack ($opts, $sources));
3514 } # meta_graph_vmpage_action
3515 # vim: shiftwidth=2:softtabstop=2:tabstop=8