fix: Remove escaped \ in Cisco voice graphs (#6624)

This commit is contained in:
Olivier Beytrison 2017-05-10 09:34:07 +02:00 committed by Neil Lathwood
parent 472d15a639
commit d60c43ed8d
2 changed files with 4 additions and 4 deletions

View File

@ -22,12 +22,12 @@ if (file_exists($rrd_filename)) {
$rrd_options .= " LINE1.25:Total#0000ee:'DSPs total ' ";
$rrd_options .= " GPRINT:Total:LAST:%3.0lf ";
$rrd_options .= " GPRINT:Total:MIN:%3.0lf ";
$rrd_options .= " GPRINT:Total:MAX:%3.0lf\\\l ";
$rrd_options .= " GPRINT:Total:MAX:%3.0lf\l ";
$rrd_options .= " DEF:Active=" . $rrd_filename . ":active:AVERAGE ";
$rrd_options .= " AREA:Active#aaff99 ";
$rrd_options .= " LINE1.25:Active#00ee00:'DSPs in use ' ";
$rrd_options .= " GPRINT:Active:LAST:%3.0lf ";
$rrd_options .= " GPRINT:Active:MIN:%3.0lf ";
$rrd_options .= " GPRINT:Active:MAX:%3.0lf\\\l ";
$rrd_options .= " GPRINT:Active:MAX:%3.0lf\l ";
}

View File

@ -22,12 +22,12 @@ if (file_exists($rrd_filename)) {
$rrd_options .= " LINE1.25:Total#0000ee:'PRI Channels total ' ";
$rrd_options .= " GPRINT:Total:LAST:%3.0lf ";
$rrd_options .= " GPRINT:Total:MIN:%3.0lf ";
$rrd_options .= " GPRINT:Total:MAX:%3.0lf\\\l ";
$rrd_options .= " GPRINT:Total:MAX:%3.0lf\l ";
$rrd_options .= " DEF:Active=" . $rrd_filename . ":active:AVERAGE ";
$rrd_options .= " AREA:Active#aaff99 ";
$rrd_options .= " LINE1.25:Active#00ee00:'PRI Channels in use ' ";
$rrd_options .= " GPRINT:Active:LAST:%3.0lf ";
$rrd_options .= " GPRINT:Active:MIN:%3.0lf ";
$rrd_options .= " GPRINT:Active:MAX:%3.0lf\\\l ";
$rrd_options .= " GPRINT:Active:MAX:%3.0lf\l ";
}