| 35 |
|
# This directory should be in the root of the php webpage structure |
| 36 |
|
$imgdir = "/opt/rrdgraphing/graphs"; |
| 37 |
|
|
| 38 |
+ |
# Size of images, in pixels |
| 39 |
+ |
$imgwidth = 500; |
| 40 |
+ |
$imgheight = 150; |
| 41 |
+ |
|
| 42 |
|
# Location of RRD databases |
| 43 |
|
$rrddir = "/opt/rrdgraphing/databases"; |
| 44 |
|
|
| 71 |
|
$hex_colon = "_3A"; |
| 72 |
|
# \ converted to a decimal then hex'd |
| 73 |
|
$hex_bslash = "_5C"; |
| 74 |
+ |
# ( converted to a decimal then hex'd |
| 75 |
+ |
$hex_rbracket = "_28"; |
| 76 |
+ |
# ) converted to a decimal then hex'd |
| 77 |
+ |
$hex_lbracket = "_29"; |
| 78 |
+ |
# + converted to a decimal then hex'd |
| 79 |
+ |
$hex_plus = "_2B"; |
| 80 |
+ |
# # converted to a decimal then hex'd |
| 81 |
+ |
$hex_hash = "_23"; |
| 82 |
|
|
| 83 |
|
# step interval in the rrd databases |
| 84 |
|
$rrdstep = 60; |