From a79dec5f5249e5b4b47288d4fc056aeb51df9108 Mon Sep 17 00:00:00 2001 From: srikanthv02 Date: Fri, 16 Sep 2016 17:04:53 +0530 Subject: [PATCH] Y label added for CPU utilization and alert removed --- client/htmls/public/js/dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/htmls/public/js/dashboard.js b/client/htmls/public/js/dashboard.js index ae27f9fa1..ea03f3268 100644 --- a/client/htmls/public/js/dashboard.js +++ b/client/htmls/public/js/dashboard.js @@ -567,7 +567,7 @@ $(document).ready(function () { data: data.CPUUtilization.dataPoints, xkey: 'toTime', ykeys: ['average'], - yLabelFormat: function (y) { return y.toFixed(2); }, + yLabelFormat: function (y) { return y.toFixed(2)+data.CPUUtilization.symbol; }, dateFormat: function (x) { return new Date(x).toString(); }, labels: ['Utilization'], lineColors: ['#3c8dbc'],