| 1 |
|
# |
| 2 |
|
# i-scream central monitoring system |
| 3 |
< |
# http://www.i-scream.org.uk |
| 3 |
> |
# http://www.i-scream.org |
| 4 |
|
# Copyright (C) 2000-2002 i-scream |
| 5 |
|
# |
| 6 |
|
# This program is free software; you can redistribute it and/or |
| 20 |
|
|
| 21 |
|
# ----------------------------------------------------------- |
| 22 |
|
# i-scream rrd graphing configuration file |
| 23 |
< |
# http://www.i-scream.org.uk |
| 23 |
> |
# http://www.i-scream.org |
| 24 |
|
# |
| 25 |
|
# Holds configuration for the perl scripts. |
| 26 |
|
# |
| 61 |
|
$hex_slash = "_2f"; |
| 62 |
|
# _ converted to a decimal then hex'd |
| 63 |
|
$hex_underscore = "_5f"; |
| 64 |
+ |
# (space) converted to a decimal then hex'd |
| 65 |
+ |
$hex_space = "_20"; |
| 66 |
+ |
# : converted to a decimal then hex'd |
| 67 |
+ |
$hex_colon = "_3A"; |
| 68 |
+ |
# \ converted to a decimal then hex'd |
| 69 |
+ |
$hex_bslash = "_5C"; |
| 70 |
+ |
# ( converted to a decimal then hex'd |
| 71 |
+ |
$hex_rbracket = "_28"; |
| 72 |
+ |
# ) converted to a decimal then hex'd |
| 73 |
+ |
$hex_lbracket = "_29"; |
| 74 |
+ |
# + converted to a decimal then hex'd |
| 75 |
+ |
$hex_plus = "_2B"; |
| 76 |
+ |
# # converted to a decimal then hex'd |
| 77 |
+ |
$hex_hash = "_23"; |
| 78 |
|
|
| 79 |
|
# step interval in the rrd databases |
| 80 |
|
$rrdstep = 60; |