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 |
|
# |
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 |
|
|
65 |
|
$hex_slash = "_2f"; |
66 |
|
# _ converted to a decimal then hex'd |
67 |
|
$hex_underscore = "_5f"; |
68 |
+ |
# (space) converted to a decimal then hex'd |
69 |
+ |
$hex_space = "_20"; |
70 |
+ |
# : converted to a decimal then hex'd |
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; |