rrdcgi - create web pages containing RRD graphs based on templates
#!/path/to/rrdcgi [--filter]
rrdcgi is a sort of very limited script interpreter. Its purpose is to run as a cgi-program and parse a web page template containing special <RRD:: tags. rrdcgi will interpret and act according to these tags. In the end it will printout a web page including the necessary CGI headers.
rrdcgi parses the contents of the template in 3 steps. In each step it looks only for a subset of tags. This allows to nest tags.
The argument parser uses the same semantics as you are used from your c shell.
<RRD::GETENV REMOTE_USER>
might give you the name of the remote user given you are using some sort of access control on the directory
<RRD::SETENV TZ UTC>
to make sure everything is presented in Universal Time. Note that the values permitted to TZ depend on your OS.
Note that if you return : from your strftime format you may have to escape them using \ if the time is to be used as an argument to a GRAPH command.
Note that if you return : from your strftime format you may have to escape them using \ if the time is to be used as an argument to a GRAPH command.
Use the --lazy option in your RRD::GRAPH tags, to reduce the load on your server. This option makes sure that graphs are only regenerated when the old ones are out of date.
If you do not specify your own --imginfo format, the following will be used:
<IMG SRC="%s" WIDTH="%lu" HEIGHT="%lu">
Note that %s stands for the filename part of the graph generated, all directories given in the PNG file argument will get dropped.
The example below creates a web pages with a single RRD graph.
#!/usr/local/bin/rrdcgi <HTML> <HEAD><TITLE>RRDCGI Demo</TITLE></HEAD> <BODY> <H1>RRDCGI Example Page</H1> <P> <RRD::GRAPH demo.gif --lazy --title="Temperatures" DEF:cel=demo.rrd:exhaust:AVERAGE LINE2:cel#00a000:"D. Celsius">
</P> </BODY> </HTML>
This script is slightly more elaborate, it allows you to run it from a form which sets RRD_NAME. RRD_NAME is then used to select which RRD you want to use a source for your graph.
#!/usr/local/bin/rrdcgi <HTML> <HEAD><TITLE>RRDCGI Demo</TITLE></HEAD> <BODY> <H1>RRDCGI Example Page for <RRD::CV RRD_NAME></H1> <H2>Selection</H2> <FORM><INPUT NAME=RRD_NAME TYPE=RADIO VALUE=roomA> Room A, <INPUT NAME=RRD_NAME TYPE=RADIO VALUE=roomB> Room B. <INPUT TYPE=SUBMIT></FORM> <H2>Graph</H2> <P> <RRD::GRAPH <RRD::CV::PATH RRD_NAME>.gif --lazy --title "Temperatures for "<RRD::CV::QUOTE RRD_NAME> DEF:cel=<RRD::CV::PATH RRD_NAME>.rrd:exhaust:AVERAGE LINE2:cel#00a000:"D. Celsius">
</P> </BODY> </HTML>
This example shows how to handle the case where the RRD, graphs and cgi-bins are seperate directories
#!/.../bin/rrdcgi <HTML> <HEAD><TITLE>RRDCGI Demo</TITLE></HEAD> <BODY> <H1>RRDCGI test Page</H1> <RRD::GRAPH /.../web/gifs/testhvt.gif --imginfo '<IMG SRC=/.../gifs/%s WIDTH=%lu HEIGHT=%lu >' --lazy --start -1d --end now DEF:http_src=/.../rrds/test.rrd:http_src:AVERAGE AREA:http_src#00ff00:http_src > </BODY> </HTML>
Note 1: Replace /.../ with the relevant directories
Note 2: The SRC=/.../gifs should be paths from the view of the webserver/browser
Tobias Oetiker <oetiker@ee.ethz.ch>