AMBARI-20437 HDFS Bytes Written and HDFS Bytes Read maybe not correct (zhangxiaolu via dsen)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/398690ac Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/398690ac Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/398690ac Branch: refs/heads/branch-3.0-ams Commit: 398690ac1c3cf283035e6a804d99536596c3bf6a Parents: ced70f7 Author: Dmytro Sen <[email protected]> Authored: Tue Sep 26 11:48:22 2017 +0300 Committer: Dmytro Sen <[email protected]> Committed: Tue Sep 26 11:48:22 2017 +0300 ---------------------------------------------------------------------- .../main/resources/common-services/HDFS/2.1.0.2.0/widgets.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/398690ac/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/widgets.json ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/widgets.json b/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/widgets.json index 39c6c0e..57d11b8 100644 --- a/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/widgets.json +++ b/ambari-server/src/main/resources/common-services/HDFS/2.1.0.2.0/widgets.json @@ -346,7 +346,7 @@ "values": [ { "name": "HDFS Bytes Read", - "value": "${dfs.datanode.BytesRead}" + "value": "${dfs.datanode.BytesRead}/1024" } ], "properties": { @@ -370,7 +370,7 @@ "values": [ { "name": "HDFS Bytes Written", - "value": "${dfs.datanode.BytesWritten}" + "value": "${dfs.datanode.BytesWritten}/1024" } ], "properties": {
