summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorndarshan <dnarayan@redhat.com>2015-02-26 15:08:56 +0530
committerBala FA <barumuga@redhat.com>2015-02-26 02:34:10 -0800
commit8d1a17a906222feb3af6df7484fcba846673bae3 (patch)
tree315b847a06a92c8b3ef9cefe629dd47286b2ea49 /templates
parente91468e8030ce33963826eab07601aa882f2ba0d (diff)
graph-templates: Fixed disk utilization graph legend.
Replaced disk utilization graph legend name from Brick Usage to Usage. Change-Id: Id022d014530108766fcb50ed0a60d6f4c76c93f3 Bug-Url: bugzilla.redhat.com/1167771 Signed-off-by: ndarshan <dnarayan@redhat.com> Reviewed-on: http://review.gluster.org/9754 Reviewed-by: Ramesh N <rnachimu@redhat.com> Reviewed-by: Bala FA <barumuga@redhat.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/check_disk_and_inode.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/check_disk_and_inode.php b/templates/check_disk_and_inode.php
index bdd988c..b46697b 100644
--- a/templates/check_disk_and_inode.php
+++ b/templates/check_disk_and_inode.php
@@ -50,7 +50,7 @@ foreach ($this->DS as $KEY=>$VAL) {
$def[$KEY] = rrd::def( "var1", $VAL['RRDFILE'], $VAL['DS'], "AVERAGE" );
- $def[$KEY] .= rrd::area( "var1", "#008000", "Brick Usage" );
+ $def[$KEY] .= rrd::area( "var1", "#008000", "Usage" );
$def[$KEY] .= rrd::gprint ("var1", array("LAST","MAX","AVERAGE"), "%.3lf %%");
$def[$KEY] .= rrd::line2( $VAL['WARN'], "#FFA500", "Warning\\n");