You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by at...@apache.org on 2018/05/21 10:27:06 UTC

[ambari] branch trunk updated: AMBARI-23900 Heatmap Data Issues

This is an automated email from the ASF dual-hosted git repository.

atkach pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/trunk by this push:
     new d4f3ab8  AMBARI-23900 Heatmap Data Issues
d4f3ab8 is described below

commit d4f3ab839d8d165e2609367fcb86602bbeb48567
Author: Andrii Tkach <at...@apache.org>
AuthorDate: Fri May 18 18:46:54 2018 +0300

    AMBARI-23900 Heatmap Data Issues
---
 ambari-server/src/main/resources/widgets.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ambari-server/src/main/resources/widgets.json b/ambari-server/src/main/resources/widgets.json
index 3176354..54e523e 100644
--- a/ambari-server/src/main/resources/widgets.json
+++ b/ambari-server/src/main/resources/widgets.json
@@ -25,7 +25,7 @@
           "values": [
             {
               "name": "Host Disk Space Used %",
-              "value": "${((disk_total-disk_free)/disk_total)*100}"
+              "value": "${((disk_total - disk_free)/disk_total)*100}"
             }
           ],
           "properties": {
@@ -58,7 +58,7 @@
           "values": [
             {
               "name": "Host Memory Used %",
-              "value": "${((mem_total-mem_free-mem_cached)/mem_total)*100}"
+              "value": "${((mem_total - mem_free - mem_cached)/mem_total)*100}"
             }
           ],
           "properties": {

-- 
To stop receiving notification emails like this one, please contact
atkach@apache.org.