blob: 0ea07bc45c39a58895bb8091b366601b5e66f0a2 [file] [log] [blame]
<html><head>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Storm UI</title>
<link href="/css/bootstrap-3.3.1.min.css" rel="stylesheet" type="text/css">
<link href="/css/jquery.dataTables.1.10.4.min.css" rel="stylesheet" type="text/css">
<link href="/css/dataTables.bootstrap.css" rel="stylesheet" type="text/css">
<link href="/css/jsonFormatter.min.css" rel="stylesheet" type="text/css">
<link href="/css/style.css?_ts=${packageTimestamp}" rel="stylesheet" type="text/css">
<script src="/js/jquery-1.11.1.min.js" type="text/javascript"></script>
<script src="/js/jquery.dataTables.1.10.4.min.js" type="text/javascript"></script>
<script src="/js/jquery.cookies.2.2.0.min.js" type="text/javascript"></script>
<script src="/js/jquery.mustache.js" type="text/javascript"></script>
<script src="/js/bootstrap-3.3.1.min.js" type="text/javascript"></script>
<script src="/js/jquery.blockUI.min.js" type="text/javascript"></script>
<script src="/js/dataTables.bootstrap.min.js" type="text/javascript"></script>
<script src="/js/jsonFormatter.min.js" type="text/javascript"></script>
<script src="/js/script.js?_ts=${packageTimestamp}" type="text/javascript"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-9">
<h1><a href="/">Storm UI</a></h1>
</div>
<div id="ui-user" class="col-md-2"></div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Cluster Summary</h2>
<div id="cluster-summary"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Nimbus Summary</h2>
<div id="nimbus-summary"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 id="cluster-resources-header">Cluster Resources</h2>
<div id="cluster-resources"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Owner Summary</h2>
<div id="owner-summary"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Topology Summary</h2>
<div id="topology-summary"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Supervisor Summary</h2>
<div id="supervisor-summary"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Nimbus Configuration</h2>
<div id="nimbus-configuration"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="json-response-error"></div>
</div>
</div>
<div>
<p id="page-rendered-at-timestamp"></p>
</div>
</div>
</body>
<script>
function jsError(other) {
try {
other();
} catch (err) {
getStatic("/templates/json-error-template.html", function(template) {
$("#json-response-error").append(Mustache.render($(template).filter("#json-error-template").html(),{error: "JS Error", errorMessage: err}));
});
}
}
$(document).ajaxStop($.unblockUI);
$(document).ajaxStart(function(){
$.blockUI({ message: '<img src="images/spinner.gif" /> <h3>Loading summary...</h3>'});
});
$(document).ready(function() {
$.ajaxSetup({
"error":function(jqXHR,textStatus,response) {
var errorJson = jQuery.parseJSON(jqXHR.responseText);
getStatic("/templates/json-error-template.html", function(template) {
$("#json-response-error").append(Mustache.render($(template).filter("#json-error-template").html(),errorJson));
});
}
});
$.getJSON("/api/v1/cluster/configuration",function(responseClusterConfig,status,jqXHR) {
$.extend( $.fn.dataTable.defaults, {
stateSave: true,
lengthMenu: [[20,40,60,100,-1], [20, 40, 60, 100, "All"]],
pageLength: responseClusterConfig["ui.pagination"]
});
var uiUser = $("#ui-user");
var clusterSummary = $("#cluster-summary");
var clusterResources = $("#cluster-resources");
var nimbusSummary = $("#nimbus-summary");
var ownerSummary = $("#owner-summary");
var topologySummary = $("#topology-summary");
var supervisorSummary = $("#supervisor-summary");
var config = $("#nimbus-configuration");
getStatic("/templates/index-page-template.html", function(indexTemplate) {
$.getJSON("/api/v1/cluster/summary",function(response,status,jqXHR) {
getStatic("/templates/user-template.html", function(template) {
jsError(function() {
uiUser.append(Mustache.render($(template).filter("#user-template").html(),response));
$('#ui-user [data-toggle="tooltip"]').tooltip()
});
});
jsError(function() {
clusterSummary.append(Mustache.render($(indexTemplate).filter("#cluster-summary-template").html(),response));
$('#cluster-summary [data-toggle="tooltip"]').tooltip();
$('#cluster-summary [data-toggle="toggle"]').each(function(index) {
var details = $(this).find('[toggle="details"]')
details.hide()
$(this).find('[toggle="link"]').on("click", function() {
details.toggle(500);
});
});
});
jsError(function() {
clusterResources.append(Mustache.render($(indexTemplate).filter("#cluster-resources-template").html(),response));
$('#cluster-resources [data-toggle="tooltip"]').tooltip();
});
jsError(function() {
var displayResource = response["schedulerDisplayResource"];
$('#cluster-resources [data-toggle="tooltip"]').tooltip();
if (!displayResource){
$('#cluster-resources-header').hide();
$('#cluster-resources').hide();
};
});
});
$.getJSON("/api/v1/nimbus/summary",function(response,status,jqXHR) {
jsError(function() {
nimbusSummary.append(Mustache.render($(indexTemplate).filter("#nimbus-summary-template").html(),response));
//host, port, isLeader, version, uptime
dtAutoPage("#nimbus-summary-table", {
columnDefs: [
{type: "num", targets: [1]},
{type: "time-str", targets: [4]}
]
});
$('#nimbus-summary [data-toggle="tooltip"]').tooltip();
});
});
$.getJSON("/api/v1/owner-resources", function(response, status, jqXHR) {
jsError(function() {
ownerSummary.append(Mustache.render($(indexTemplate).filter("#owner-summary-template").html(), response));
makeOwnerSummaryTable(response, '#owner-summary-table', '#owner-summary');
});
});
$.getJSON("/api/v1/topology/summary",function(response,status,jqXHR) {
jsError(function() {
topologySummary.append(Mustache.render($(indexTemplate).filter("#topology-summary-template").html(),response));
//name, owner, status, uptime, num workers, num executors, num tasks, replication count, assigned total mem, assigned total cpu, scheduler info
dtAutoPage("#topology-summary-table", {
columnDefs: [
{type: "num", targets: [4, 5, 6, 7, 8, 9]},
{type: "time-str", targets: [3]}
]
});
$('#topology-summary [data-toggle="tooltip"]').tooltip();
});
});
$.getJSON("/api/v1/supervisor/summary",function(response,status,jqXHR) {
jsError(function() {
supervisorSummary.append(Mustache.render($(indexTemplate).filter("#supervisor-summary-template").html(),response));
//id, host, uptime, slots, used slots
dtAutoPage("#supervisor-summary-table", {
columnDefs: [
{type: "num", targets: [3, 4]},
{type: "time-str", targets: [2]}
]
});
$('#supervisor-summary [data-toggle="tooltip"]').tooltip();
});
});
jsError(function() {
var formattedResponse = formatConfigData(responseClusterConfig);
config.append(Mustache.render($(indexTemplate).filter("#configuration-template").html(),formattedResponse));
$('#nimbus-configuration-table td').jsonFormatter();
//key, value
dtAutoPage("#nimbus-configuration-table", {});
$('#nimbus-configuration [data-toggle="tooltip"]').tooltip();
});
});
});
});
getPageRenderedTimestamp("page-rendered-at-timestamp");
</script>
</html>