Repository: mesos Updated Branches: refs/heads/master feaa23649 -> ec6c89b36
Fixed the missing disk utilization in the webui. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/ec6c89b3 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/ec6c89b3 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/ec6c89b3 Branch: refs/heads/master Commit: ec6c89b36736f005f7d6e9de7b54d4da9e159c47 Parents: feaa236 Author: Benjamin Mahler <[email protected]> Authored: Tue Mar 28 13:51:11 2017 -0700 Committer: Benjamin Mahler <[email protected]> Committed: Tue Mar 28 13:51:32 2017 -0700 ---------------------------------------------------------------------- src/webui/master/static/agent_framework.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/ec6c89b3/src/webui/master/static/agent_framework.html ---------------------------------------------------------------------- diff --git a/src/webui/master/static/agent_framework.html b/src/webui/master/static/agent_framework.html index e2a4033..06f1697 100644 --- a/src/webui/master/static/agent_framework.html +++ b/src/webui/master/static/agent_framework.html @@ -117,7 +117,7 @@ <td>N/A</td> <td>{{monitor.frameworks[framework.id].executors[executor.id].statistics.mem_rss_bytes | dataSize}} / {{executor.resources.mem * (1024 * 1024) | dataSize}}</td> - <td>{{monitor.frameworks[framework.id].executors[executor.id].statistics.data_used_bytes | dataSize}} / + <td>{{monitor.frameworks[framework.id].executors[executor.id].statistics.disk_used_bytes | dataSize}} / {{executor.resources.disk * (1024 * 1024) | dataSize}}</td> <td> <a href="{{'#/agents/' + agent_id + '/browse?path=' +
