diff --git llap-server/src/main/resources/hive-webapps/llap/index.html llap-server/src/main/resources/hive-webapps/llap/index.html index 31a27a0..73c03c1 100644 --- llap-server/src/main/resources/hive-webapps/llap/index.html +++ llap-server/src/main/resources/hive-webapps/llap/index.html @@ -25,19 +25,19 @@ - - - - - - + + + + + +
diff --git llap-server/src/main/resources/hive-webapps/llap/js/metrics.js llap-server/src/main/resources/hive-webapps/llap/js/metrics.js index 7bb2890..4c41c34 100644 --- llap-server/src/main/resources/hive-webapps/llap/js/metrics.js +++ llap-server/src/main/resources/hive-webapps/llap/js/metrics.js @@ -227,7 +227,7 @@ $(function() { var views = [llap.view.Hostname, llap.view.Heap, llap.view.Cache, llap.view.Executors, llap.view.Tasks, llap.view.System] setInterval(function() { - $.getJSON("/jmx", function(jmx){ + $.getJSON("jmx", function(jmx){ models.forEach(function (m) { m.push(jmx); }); views.forEach(function (v) { v.refresh(); }); });