Code

fix libwrap and libdbi detection logic
[rrdtool-all.git] / contrib / rrdexplorer / README.txt
1 From: "Claus Norrbohm" <james@type-this.com>
3 RRD-Explorer (formally known as clickable rrd graphs) is a
4 general tool for exploring RRD-files. It eliminates the need
5 for creating individual RRDs cgi-scripts to show your RRD
6 graphs, just plug these 4 lines into your httpd.conf (thanks
7 to Alex van den Bogaerdt):
9    # rrd files
10    AddIcon /icons/rrd.png .rrd
11    AddDescription "Round Robin Database" .rrd
13    # rrdtool handler
14    AddHandler rrd-handler rrd
15    Action rrd-handler /cgi-bin/map.cgi
17 Last line must be modified to match your system...
19 If your placed map.cgi & png.cgi - change owner to reflect
20 your cgi-bin user and make the scripts executable ex.:
22    chown root.root map.cgi png.cgi
23    chmod a+rx map.cgi png.cgi
25 Now place your RRD-files in a directory below your "DocumentRoot"
26 where they can be seen, i.e. "Options Indexes" must be set for
27 the directory.
29 Enjoy, Claus