#! /usr/bin/perl # RRGrapher.cgi - Round Robin Grapher, a Graph Construction Set for RRDTOOL # Copyright (C) 1999-2002 Dave Plonka # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # $Id: RRGrapher.cgi,v 1.26 2002/01/29 03:30:34 dplonka Exp $ # Dave Plonka use FindBin; use CGI::Carp qw(fatalsToBrowser); use MIME::Base64; # for encoded GIF logo embedded in use File::Find; use Sys::Hostname; use POSIX; # for mktime, strftime # { CONFIGURATION SECTION: ##################################################### # DIRECTORIES IN WHICH TO FIND ".RRD" FILES (will be find'ed [sic] recursively): @rrddirs = ( '/var/local/flows/graphs', '/var/local/stats/cricket/cricket-data', ); # YOU MUST SET THESE CORRECTLY TO GET WORKING ON-LINE HELP BUTTONS IN RRGRAPHER! # THE DIRECTORY IN WHICH THE RRDTOOL DOCS (e.g. "rrdgraph.pod") ARE INSTALLED: $docdir = '/usr/local/rrdtool-1.0.33/doc'; # '/usr/local/src/rrdtool-ver/doc' # THE FULL PATH TO THE PERL pod2html COMMAND: $pod2html = '/usr/bin/pod2html'; # e.g. '/usr/local/bin/pod2html' # NOTE! If using Apache version < 1.3, rename this script to have the "nph-" # prefix in the name and change the following line to: # use CGI qw(:nph :standard :html3); use CGI qw(:standard :html3); # If you've installed "RRDs.pm" in an unusual place, add a "use lib" here: # use lib '/my/secret/perl/lib/dir'; # }{ OPTIONAL CONFIGURATION #################################################### # Set this if you want to be able to fetch the time-series data for a single DS: # (this is an obscure feature that I originally added just for my personal use, # No warranties, no documentation. - Dave): $fetch = 0; # FlowScan "events" FILE(S) - another obscure feature, used to specify the # start and end times and title based on events specified in files of the # format understood by the "event2vrule" script included with FlowScan: @event_files = ( # '/var/local/flows/graphs/events.txt', ); # } END CONFIGURATION SECTION ################################################## use RRDs; # FIXME? if no RRDs, then use RRDp? '$Revision: 1.26 $' =~ m/(\d+)\.(\d+)/ && (( $VERSION ) = sprintf("%d.%03d", $1, $2)); if (param('COPYING')) { # just generate the license and exit print header('text/plain'); print <<_EOF_ GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. _EOF_ ; exit 0 } elsif (param('rrdgraph')) { $|=1; print header(); chdir '/tmp' || die; # pod2html likes to write temp files my $command = "${pod2html} ${docdir}/rrdgraph.pod"; exec $command; die "exec \"$command\": $!" } elsif (param('rrdfetch')) { $|=1; print header(); chdir '/tmp' || die; # pod2html likes to write temp files my $command = "${pod2html} ${docdir}/rrdfetch.pod"; exec $command; die "exec \"$command\": $!" } elsif (param('rpntutorial')) { $|=1; print header(); chdir '/tmp' || die; # pod2html likes to write temp files $command = "${pod2html} ${docdir}/rpntutorial.pod"; exec $command; die "exec \"$command\": $!" } elsif (param('cdeftutorial')) { $|=1; print header(); chdir '/tmp' || die; # pod2html likes to write temp files $command = "${pod2html} ${docdir}/cdeftutorial.pod"; exec $command; die "exec \"$command\": $!" } # { "globals": # color list wasn generated from X11 "rgb.txt" with: # perl -lane 'print(sprintf("\"#%02X%02X%02X\"", $F[0..2]), " => \"", # join(" ", @F[3 .. $#F]), "\",") unless $F[0] =~ m/\s*!/' rgb.txt $Script = $FindBin::Script; $Script =~ s/\..*$//; %colors = ( "#FFFAFA" => "snow", "#F8F8FF" => "ghost white", "#F5F5F5" => "white smoke", "#DCDCDC" => "gainsboro", "#FFFAF0" => "floral white", "#FDF5E6" => "old lace", "#FAF0E6" => "linen", "#FAEBD7" => "antique white", "#FFEFD5" => "papaya whip", "#FFEBCD" => "blanched almond", "#FFE4C4" => "bisque", "#FFDAB9" => "peach puff", "#FFDEAD" => "navajo white", "#FFE4B5" => "moccasin", "#FFF8DC" => "cornsilk", "#FFFFF0" => "ivory", "#FFFACD" => "lemon chiffon", "#FFF5EE" => "seashell", "#F0FFF0" => "honeydew", "#F5FFFA" => "mint cream", "#F0FFFF" => "azure", "#F0F8FF" => "alice blue", "#E6E6FA" => "lavender", "#FFF0F5" => "lavender blush", "#FFE4E1" => "misty rose", "#FFFFFF" => "white", "#000000" => "black", "#2F4F4F" => "dark slate gray", "#696969" => "dim gray", "#708090" => "slate gray", "#778899" => "light slate gray", "#BEBEBE" => "gray", "#D3D3D3" => "light gray", "#191970" => "midnight blue", "#000080" => "navy", "#000080" => "navy blue", "#6495ED" => "cornflower blue", "#483D8B" => "dark slate blue", "#6A5ACD" => "slate blue", "#7B68EE" => "medium slate blue", "#8470FF" => "light slate blue", "#0000CD" => "medium blue", "#4169E1" => "royal blue", "#0000FF" => "blue", "#1E90FF" => "dodger blue", "#00BFFF" => "deep sky blue", "#87CEEB" => "sky blue", "#87CEFA" => "light sky blue", "#4682B4" => "steel blue", "#B0C4DE" => "light steel blue", "#ADD8E6" => "light blue", "#B0E0E6" => "powder blue", "#AFEEEE" => "pale turquoise", "#00CED1" => "dark turquoise", "#48D1CC" => "medium turquoise", "#40E0D0" => "turquoise", "#00FFFF" => "cyan", "#E0FFFF" => "light cyan", "#5F9EA0" => "cadet blue", "#66CDAA" => "medium aquamarine", "#7FFFD4" => "aquamarine", "#006400" => "dark green", "#556B2F" => "dark olive green", "#8FBC8F" => "dark sea green", "#2E8B57" => "sea green", "#3CB371" => "medium sea green", "#20B2AA" => "light sea green", "#98FB98" => "pale green", "#00FF7F" => "spring green", "#7CFC00" => "lawn green", "#00FF00" => "green", "#7FFF00" => "chartreuse", "#00FA9A" => "medium spring green", "#ADFF2F" => "green yellow", "#32CD32" => "lime green", "#9ACD32" => "yellow green", "#228B22" => "forest green", "#6B8E23" => "olive drab", "#BDB76B" => "dark khaki", "#F0E68C" => "khaki", "#EEE8AA" => "pale goldenrod", "#FAFAD2" => "light goldenrod yellow", "#FFFFE0" => "light yellow", "#FFFF00" => "yellow", "#FFD700" => "gold", "#EEDD82" => "light goldenrod", "#DAA520" => "goldenrod", "#B8860B" => "dark goldenrod", "#BC8F8F" => "rosy brown", "#CD5C5C" => "indian red", "#8B4513" => "saddle brown", "#A0522D" => "sienna", "#CD853F" => "peru", "#DEB887" => "burlywood", "#F5F5DC" => "beige", "#F5DEB3" => "wheat", "#F4A460" => "sandy brown", "#D2B48C" => "tan", "#D2691E" => "chocolate", "#B22222" => "firebrick", "#A52A2A" => "brown", "#E9967A" => "dark salmon", "#FA8072" => "salmon", "#FFA07A" => "light salmon", "#FFA500" => "orange", "#FF8C00" => "dark orange", "#FF7F50" => "coral", "#F08080" => "light coral", "#FF6347" => "tomato", "#FF4500" => "orange red", "#FF0000" => "red", "#FF69B4" => "hot pink", "#FF1493" => "deep pink", "#FFC0CB" => "pink", "#FFB6C1" => "light pink", "#DB7093" => "pale violet red", "#B03060" => "maroon", "#C71585" => "medium violet red", "#D02090" => "violet red", "#FF00FF" => "magenta", "#EE82EE" => "violet", "#DDA0DD" => "plum", "#DA70D6" => "orchid", "#BA55D3" => "medium orchid", "#9932CC" => "dark orchid", "#9400D3" => "dark violet", "#8A2BE2" => "blue violet", "#A020F0" => "purple", "#9370DB" => "medium purple", "#D8BFD8" => "thistle", "#A9A9A9" => "dark gray", "#00008B" => "dark blue", "#008B8B" => "dark cyan", "#8B008B" => "dark magenta", "#8B0000" => "dark red", "#90EE90" => "light green", ); # Default colors - these are from gnuplot: my @def_colors = qw(#0000FF #00FFFF #00FF00 #A0522D #FFA500 #FF7F50 #FF0000 #FF00FF); %files = (); @chr = ('A' .. 'Z', 'a' .. 'z'); @ord{@chr} = (0 .. $#chr); @files = (); # list of rrd file names (used by the File::Find "wanted" sub) my $image; # the HTML that displays the image image in the upper "view port" my $text; # the HTML that displays the text in lower "view port" my $event; # the selected event description (if @event_files is used) # } if (param('event')) { my @event = param('event'); my $window = param('window'); if (!$window) { $window = 2*86400; # default to 48 hours } @F = split(m/[\t ]+/, $event[0]); my $whence = shift(@F); $event = "@F"; if (!param('start')) { param('start', strftime("%b %d %Y %H:%M", localtime($whence - int($window/2)))); } if (!param('end')) { param('end', strftime("%b %d %Y %H:%M", localtime($whence + int($window/2)))); } if (!param('title')) { param('title', $event); } } if (param('graph') || param('logo')) { $|=1; print header('image/gif'); } elsif (param('fetch')) { print header('text/plain') } else { print header(); # { Do a title for this page if (param('command')) { if (param('title')) { print title("$Script: " . param('title')), "\n" } else { print title("$Script: Untitled"), "\n" } } else { print title("$Script"), "\n"; } # } $image = "\"[$Script\n"; if (param('rgb_file')) { # user specified a color file %colors = (); my $rgb_txt = param('rgb_file'); if (open(COLORS, "<${rgb_txt}")) { while () { next if (m/\s*!/); # skip comments @F = split(m/\s+/); # skip names with whitespace (these are duplicates anyway): next if $#F > 3; $name = join(' ', @F[3 .. $#F]); # skip names with numbers in them (for brevity): next if $name =~ m/\d$/; $colors{sprintf("#%02X%02X%02X", $F[0], $F[1], $F[2])} = $name } close(COLORS) } else { warn "open \"${rgb_txt}\", \"r\": $!" } } if (!%colors) { # be sure there are some colors... $colors{'#000000'} = 'black'; $colors{'#FF0000'} = 'red'; $colors{'#00FF00'} = 'green'; $colors{'#0000FF'} = 'blue'; $colors{'#FFFFFF'} = 'white' } @colors = sort { my $aye = join(' ', reverse(split(m/\s+/, $colors{$a}))); my $bee = join(' ', reverse(split(m/\s+/, $colors{$b}))); $aye cmp $bee } keys(%colors) } # { build a DS (Data Source) hash from the CGI params: %DS = (); { foreach my $DS (param('DS')) { my($var, $database, $db, $cf, $name, $rpn, $type, $color, $label) = split(m/:/, $DS); if (param("${var}_type")) { $type = param("${var}_type"); } if (param("${var}_color")) { $color = param("${var}_color"); } if (param("${var}_label")) { $label = param("${var}_label"); } $DS{$var} = { database => $database, db => $db, cf => $cf, name => $name, rpn => $rpn, type => $type, color => $color, label => $label } } } # FIXME - show an error if first DS with a plot $type other than 'NONE' has # a $type of 'STACK' (because the first DS can't be a 'STACK') # } if (param('add')) { my $def = 0; # index into @def_colors my @database = param('database'); my $cf = param('CF'); die unless $cf; if (@database) { foreach $database (@database) { # Since we're just trying to determine the DS names, we specificy as # little a range of time as possible *and* one that will be tolerated # by RRDs::fetch at the time of this writing (RRDTOOL 1.0.13). my ($start, $step, $names, $data) = RRDs::fetch($database, $cf, '-s', 0, '-e', 0); my $error; if ($error = RRDs::error) { $text = <<_EOF_ An error occured while $FindBin::Script was trying to determine DS names:
_EOF_ ; $text .= pre("RRDs::fetch('$database', '$cf', '-s', 0, '-e', 0): ", $error) } else { my $name; $source_regexp = param('source_regexp'); my $ord = 0; foreach $name (@$names) { next if $source_regexp && $name !~ m/$source_regexp/i; my $chr = $chr[$ord]; while (defined($DS{$chr})) { # skip passed defined DSes... $ord++; $chr = $chr[$ord] } if (!grep($database eq $_->{database} && $cf eq $_->{cf} && $name eq $_->{name}, values(%DS))) { if ($def == $#def_colors) { $def = 0 } $DS{$chr} = { database => $database, cf => $cf, name => $name, color => $def_colors[$def], type => 'LINE1' }; $ord++; $def++ } } } } if ('' eq $text) { $text = <<_EOF_ Please examine the "Data Sources" and optionally change the "Plot Type"
and/or color for each, then choose either "Graph Data Sources" or
"Graph Data Sources to GIF" to produce the graph. _EOF_ } } else { $text = <<_EOF_ Please select one or more items from the list of "Available Databases" and
then choose "Add >>". _EOF_ } } elsif (param('fetch')) { my $def = 0; # index into @def_colors my @database = param('database'); my $cf = param('CF'); die unless $cf; if (1 == @database) { my $database = $database[0]; my @args = ($database, $cf); my ($start, $step, $names, $data) = RRDs::fetch(@args); my $error; if ($error = RRDs::error) { $text = <<_EOF_ An error occured while $FindBin::Script was trying to determine DS names: _EOF_ ; $text .= pre("RRDs::fetch(@args): ", $error) } else { my $name; my @columns; my @names; $source_regexp = param('source_regexp'); my $lcv = 0; foreach $name (@$names) { if ('' eq $source_regexp or $name =~ m/$source_regexp/i) { push(@columns, $lcv); push(@names, $name) } $lcv++ } if (0 == @columns) { $text = "ERROR: RegExp did not match any Data Source names: (@$names).\n"; goto fetch_error } my @args = ($database, $cf); if (param('start')) { push(@args, '-s', param('start')) } if (param('end')) { push(@args, '-e', param('end')) } my ($start, $step, $names, $data) = RRDs::fetch(@args); if ($error = RRDs::error) { $text = <<_EOF_ An error occured while $FindBin::Script was trying to determine DS names: _EOF_ ; $text .= pre("RRDs::fetch(@args): ", $error); } else { printf("# Generated by %s v$VERSION on %s, %s\n", $FindBin::Script, hostname, scalar localtime); print "#\n"; print "# rrdtool fetch arguments: '", join ("', '", @args), "'\n"; print "# event: \"$event\"\n" if $event; printf("# start time: %s \n", scalar localtime $start); printf("# end time: %s \n", scalar localtime $start+@$data*$step); printf("# (%ld data points, %ld second interval", scalar @$data, $step); my $time_t = $start; # { make a first pass at the data duplicating the previous value # into positions that would otherwise be "not a number" (nan). my @prevrow = (); my $replaced = 0; foreach my $row (@$data) { if (@prevrow) { foreach my $column (@columns) { if ('' eq $row->[$column]) { # if this value is undefined (i.e. "nan"), # repeat the previous value: $row->[$column] = $prevrow[$column]; $replaced++ } } } @prevrow = @$row; $time_t += $step } if ($replaced) { printf(", replicated %ld value(s) in \"nan\" positions", $replaced) } print ")\n#\n"; print "# columns: @names\n"; foreach my $row (@$data) { my @vals = (); foreach my $n (@columns) { push(@vals, ('' eq $row->[$n])? 'nan' : sprintf("%e", $row->[$n])) } print "@vals\n" } # } } } } else { $text = <<_EOF_ Please select ONE of the "Available Databases" and then choose "Fetch". _EOF_ } fetch_error: print($text) if $text; exit 0 } elsif (param('remove')) { my $type = param('action_type'); if ('all' eq $type) { grep(delete($DS{$_}), keys(%DS)) } else { # delete selected DSes my $ord; for ($ord = 0; $ord < $ord{param('add_chr')}; $ord++) { my $chr = $chr[$ord]; next unless defined($DS{$chr}); delete($DS{$chr}) if param("${chr}_selected") } } } elsif (param('add_cdef')) { my $chr = param('add_chr'); my $rpn = param('add_rpn'); if ($chr && $rpn) { $DS{$chr} = { rpn => $rpn, color => $def_colors[0], type => 'LINE1' } } } elsif (param('default_colors')) { my $def = 0; foreach my $chr (sort keys(%DS)) { next if ('NONE' eq $DS{$chr}{type}); # don't bother with unplotted DSes if ($def == $#def_colors) { # wrap-around, since we don't have an unlimited number of colors $def = 0 } $DS{$chr}{color} = $def_colors[$def]; $def++; } } elsif (param('command') || param('graph')) { my $type = param('action_type'); my ($chr, @DEF, @CDEF, @PLOT, @LEGEND, @options); my $statfmt = param('statfmt'); if ('' eq $statfmt) { $statfmt = '%lf' # default } foreach $chr (sort keys(%DS)) { # DEF:vname=rrd:ds-name:CF if ($DS{$chr}{database}) { # it's a DEF (rather than CDEF) push(@DEF, "DEF:${chr}=" . join(':', $DS{$chr}{database}, $DS{$chr}{name}, $DS{$chr}{cf})) } else { # RPN expression push(@DEF, "CDEF:${chr}=" . $DS{$chr}{rpn}) } # next unless ('all' eq $type || param("${chr}_selected")); if ('NONE' ne $DS{$chr}{type}) { my $label; if ($DS{$chr}{label}) { $label = $DS{$chr}{label} } elsif ($DS{$chr}{rpn}) { $label = "$chr) $DS{$chr}{rpn}" } else { $label = "$chr) $DS{$chr}{db} $DS{$chr}{cf} $DS{$chr}{name}" } push(@PLOT, $DS{$chr}{type} . ":${chr}" . $DS{$chr}{color} . ":${label}"); if (param('statistics')) { push(@PLOT, "GPRINT:${chr}:MIN:(min=${statfmt}", "GPRINT:${chr}:AVERAGE:ave=${statfmt}", "GPRINT:${chr}:MAX:max=${statfmt})", 'COMMENT:\n'); } } else { push(@PLOT, "COMMENT:$chr) $DS{$chr}{db} $DS{$chr}{cf} $DS{$chr}{name}", 'COMMENT:\n') } } my($option, $opt); foreach $opt ('start', 'end', 'x-grid', 'y-grid', 'vertical-label', 'width', 'height', 'interlaced', 'logarithmic', 'upper-limit', 'lower-limit', 'rigid', 'base', 'color', 'title') { if (param($opt)) { push(@options, "--${opt}", param($opt)) } } if (param('graph')) { # just generate the graph to standard output # If "/dev/fd/1" exists and is writable (such as under Solaris and Linux) # we use it rather than specifying standard output using '-' as the file- # name, since older versions of RRDTOOL did not support filename as "-". # If a broken graph results because you're on a platform that doesn't # support accessing standard output as "/dev/fd/1" and your RRDTOOL is # so old that it doesn't understand "-" (e.g. ".99.20") then you must # upgrade RRDTOOL. RRDs::graph((-w '/dev/fd/1')? '/dev/fd/1' : '-', @options, @DEF, @PLOT, @LEGEND); exit 0 } else { # command $image = "\"[what\n"; $text = pre("rrdtool graph /your/file/name/here.gif \\\n'" . join("' \\\n'", @options, @DEF, @PLOT, @LEGEND) . "'\n"); $text =~ s/\n'(--.*?)'\s+\\\n/\n$1 /g; # join "'--opt' \\\n'optarg'" lines } } elsif (param('logo')) { print decode_base64(join('', )); exit 0 } if (!param('graph')) { # show the whole form print <<_EOF_
_EOF_ ; print $image; print <<_EOF_
_EOF_ ; if ('' eq $text) { my $licurl = url() . '?COPYING=1'; print <<_EOF_ $Script version $VERSION, Copyright (C) 1999-2002 Dave Plonka
$Script comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; read `COPYING' for details. _EOF_ ; } else { print $text; } print <<_EOF_
_EOF_ ; # We skip files with ":" in the name because RRDTOOL graph can't handle them: find(sub { -f $_ && /^.*\.rrd$/ && !/:/ && push(@files, "$File::Find::dir/$_") }, @rrddirs); @files = sort by_number_kludge @files; foreach my $file (@files) { my $label = $file; $label =~ s|^.*/||; $label =~ s|\.rrd$||; $files{$file} = $label } print startform('get'), "\n"; print <<_EOF_ _EOF_ ; print("\n"); print("\n"); print("\n"); } print("\n"); print("\n"); print("\n"); print("\n"); print("\n"); print("\n"); print("\n"); print <<_EOF_
Available Databases

Data Sources

\n"); CGI::delete('database'); print scrolling_list(-name => 'database', '-values' => \@files, -default => [], -size => 10, -height => '100%', -width => '100%', -multiple => 'true', -labels => \%files), br(), "\n"; print("\n"); print submit(-name => 'add', -value => 'Add >>'), "\n"; print("
\n"); if ($fetch) { print submit(-name => 'fetch', -value => 'Fetch'), "\n"; print("
\n"); if (%DS) { print <<_EOF_ _EOF_ ; print "\n"; # The default colors button doesn't work right (yet) # submit(-name => 'default_colors', -value => 'Default'), print "\n"; my $first = 1; foreach my $chr (sort keys(%DS)) { print "\n"; print "\n"; print "\n"; print "\n"; print "\n"; print "\n"; $first = 0 } print <<_EOF_
Name Label Plot TypeColors:", submit(-name => 'update_colors', -value => 'Refresh'), "
", checkbox(-name => "${chr}_selected", -label => $chr), "", # We abbreviate "AVERAGE" to "AVE" in the label: textfield(-name => "${chr}_label", -default => $DS{$chr}{rpn}? $DS{$chr}{rpn} : $files{$DS{$chr}{database}} . " " . ('AVERAGE' eq $DS{$chr}{cf}? 'AVE' : $DS{$chr}{cf}) . " $DS{$chr}{name}"), ""; if ($first) { # don't allow 'STACK' for 1st DS: print popup_menu(-name => "${chr}_type", '-values' => ['LINE1', 'LINE2', 'LINE3', 'AREA', 'NONE'], '-default' => $DS{$chr}{type}) } else { print popup_menu(-name => "${chr}_type", '-values' => ['LINE1', 'LINE2', 'LINE3', 'AREA', 'STACK', 'NONE'], '-default' => $DS{$chr}{type}) } print "", popup_menu(-name => "${chr}_color", '-values' => \@colors, -default => $DS{$chr}{color}, -labels => \%colors), "
_EOF_ ; print submit(-name => 'remove', -value => 'Remove Data Sources:'), "\n"; print radio_group(-name => 'action_type', '-values' => ['selected', 'all'], -default => 'selected'), br(), "\n"; CGI::delete('add_chr'); my($ord, $chr); for ($ord = 0; ($chr = $chr[$ord]) && defined($DS{$chr}); $ord++) {} $chr = $chr[$ord]; print hidden(-name => 'add_chr', -value => $chr), "\n"; CGI::delete('DS'); my @DS = (); grep(push(@DS, join(':', $_, $DS{$_}{database}, $files{$DS{$_}{database}}, $DS{$_}{cf}, $DS{$_}{name}, $DS{$_}{rpn}, $DS{$_}{type}, $DS{$_}{color})), sort keys(%DS)); print hidden(-name => 'DS', -value => \@DS), "\n"; print submit(-name => 'add_cdef', -value => "Add Data Source \"$chr\" as RPN Expression:"), "\n"; print textfield(-name => 'add_rpn', -default => '0'), br(), "\n"; if (0) { print radio_group(-name => 'add_cdef_type', '-values' => ['Binomial Expression', 'RPN Expression'], -default => 'Binomial Expression'), br(), "\n"; } } print("
\n"); print radio_group(-name => 'CF', '-values' => ['AVERAGE', 'MIN', 'MAX', 'LAST'], -default => 'AVERAGE'), br(), "\n"; print 'Data Source Filter RegExp', textfield(-name => 'source_regexp'); print("
\n"); if (%DS) { print submit(-name => 'command', -value => 'Graph Data Sources'), "\n"; print submit(-name => 'graph', -value => 'Graph Data Sources to GIF'), "\n"; } print("


_EOF_ ; if ($fetch or %DS) { print <<_EOF_
Options

_EOF_ ; } if (%DS) { print '\n"; print '\n"; } if ($fetch or %DS) { print '\n"; print '\n"; if (@event_files) { foreach my $file (@event_files) { open(FILE, "<$file") || die "open: \"$file\": $!\n"; while () { @F = split; my $date = shift(@F); my $time = shift(@F); if ("$date $time" !~ m|^(\d\d\d\d)/(\d\d)/(\d\d) (\d\d):?(\d\d)$|) { warn "bad date/time: \"$date $time\"! (skipping)\n"; next } my $whence = mktime(0,$5,$4,$3,$2-1,$1-1900,0,0,-1); my $val = "$date $time @F"; push(@events, "$whence $val"); $events{"$whence $val"} = $val; } close(FILE); # FIXME - sort @events by time_t } print '\n"; } } if (%DS) { print '\n"; print '\n"; print "\n"; } if ($fetch or %DS) { print <<_EOF_
Title:', textfield(-name => 'title'), "
Vertical Label:', textfield(-name => 'vertical-label', -default => ''), "
Start Time:', textfield(-name => 'start'), "
End Time:', textfield(-name => 'end'), "
Event:', scrolling_list('-name' => 'event', '-values' => \@events, '-default' => [], '-size' => 5, '-height' => '100%', '-width' => '100%', '-labels' => \%events), "
Width:', textfield(-name => 'width'), "
Height:', textfield(-name => 'height'), "
", checkbox(-name => 'statistics', -label => ' Show statistics using this format:'), ""; print textfield(-name => 'statfmt', -default => '%.0lf'), "
_EOF_ ; print br(), "
\n"; } print endform, "\n"; goto trailer_label } trailer_label: if (!param('graph')) { my $url = url(); print <<_EOF_
Help

_EOF_ ; print("\n") if (-r "${docdir}/rrdgraph.pod"); print("\n") if (-r "${docdir}/rrdfetch.pod"); print("\n") if (-r "${docdir}/cdeftutorial.pod"); print("\n") if (-r "${docdir}/rpntutorial.pod"); print <<_EOF_
\n", "rrdgraph\n", "\n", "rrdfetch\n", "\n", "cdeftutorial\n", "\n", "rpntutorial\n", " RRGrapher
_EOF_ } # This subrotine is used to perform numeric sorting of items that can contain # both numeric and non-numeric characters. # It sorts by collating sequence except that sequences of digits are evaluated # to determine their numerical value and that compared to either the character # or sequence of digits in the corresponding position of the other string. # E.g. it will sort "A2" before "A10" as determined by first comparing # "A" to "A" then by comparing 2 to 10. sub by_number_kludge { my ($stra, $strb, @a, @b, $val) = ($a, $b); @a = $stra =~ m/(\d+|\D+)/g; @b = $strb =~ m/(\d+|\D+)/g; while (1) { if ($a[0] =~ m/^\d+$/ && $b[0] =~ m/^\d+$/ && ($val = ($a[0] <=> $b[0]))) { return $val } elsif ($val = ($a[0] cmp $b[0])) { return $val } shift @a; shift @b } return 0 } exit; __END__ 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 Ow==