jmxpage.vm

137 lines | 3.955 kB Blame History Raw Download
#*
 * Copyright 2012 LinkedIn, Inc
 * 
 * Licensed 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.
*#

<!DOCTYPE html> 
<html>
	<head>
#parse( "azkaban/webapp/servlet/velocity/style.vm" )
		<script type="text/javascript" src="${context}/js/jquery/jquery-1.9.1.js"></script>
		<script type="text/javascript" src="${context}/js/namespace.js"></script>
		<script type="text/javascript" src="${context}/js/underscore-1.4.4-min.js"></script>
		<script type="text/javascript" src="${context}/js/backbone-0.9.10-min.js"></script>
		<script type="text/javascript" src="${context}/js/azkaban.nav.js"></script>
		<script type="text/javascript" src="${context}/js/azkaban.jmx.view.js"></script>
		<script type="text/javascript">
			var contextURL = "${context}";
			var currentTime = ${currentTime};
			var timezone = "${timezone}";
			var errorMessage = null;
			var successMessage = null;
		</script>
	</head>
	<body>
#set($current_page="all")
#set($counter=0)
#parse( "azkaban/webapp/servlet/velocity/nav.vm" )
#if($errorMsg)
<div class="box-error-message"><pre>$errorMsg</pre></div>
#end

		<div class="content">
			<div id="all-jobs-content">
				<div class="section-hd">
					<h2><a href="${context}/jmx">Admin JMX Http Page</span></a></h2>
				</div>
			</div>
			<h3 class="subhead">Web Client JMX</h3>

			<table id="all-jobs" class="all-jobs job-table">
				<thead>
					<tr>
						<th>Name</th>
						<th>Domain</th>
						<th>Canonical Name</th>
						<th></th>
					</tr>
				</thead>
				<tbody>
#foreach($bean in $mbeans)
				<tr>
					<td>${bean.keyPropertyList.get("name")}</td>
					<td>${bean.domain}</td>
					<td>${bean.canonicalName}</td>
					<td><div class="btn4 querybtn" id="expandBtn-$counter" domain="${bean.domain}" name="${bean.keyPropertyList.get("name")}">Query</div></td>
				</tr>

				<tr class="childrow" id="expandBtn-${counter}-child"  style="display: none;">
					<td class="expandedFlow" colspan="3">
						<table class="innerTable">
							<thead>
								<tr>
									<th>Attribute Name</th>
									<th>Value</th>
								</tr>
							</thead>
							<tbody id="expandBtn-${counter}-tbody">
							</tbody>
						</table>
					</td>

					<td>
						<div class="btn4 collapse">Collapse</div>
					</td>
				</tr>
#set($counter=$counter + 1)
#end
				</tbody>
			</table>

#foreach($executor in $remoteMBeans.entrySet())
			<h3 class="subhead">Remote Executor JMX $executor.key</h3>
			<table class="all-jobs job-table remoteJMX">
				<thead>
					<tr>
						<th>Name</th>
						<th>Domain</th>
						<th>Canonical Name</th>
						<th></th>
					</tr>
				</thead>
				<tbody>
					#foreach($bean in $executor.value)
						<tr>
							<td>${bean.get("keyPropertyList").get("name")}</td>
							<td>${bean.get("domain")}</td>
							<td>${bean.get("canonicalName")}</td>
							<td><div class="btn4 querybtn" id="expandBtn-$counter" domain="${bean.get("domain")}" name="${bean.get("keyPropertyList").get("name")}" hostport="$executor.key">Query</div></td>
						</tr>
					<tr class="childrow" id="expandBtn-${counter}-child"  style="display: none;">
						<td class="expandedFlow" colspan="3">
							<table class="innerTable">
								<thead>
									<tr>
										<th>Attribute Name</th>
										<th>Value</th>
									</tr>
								</thead>
								<tbody id="expandBtn-${counter}-tbody">
								</tbody>
							</table>
						</td>

						<td>
							<div class="btn4 collapse">Collapse</div>
						</td>
				</tr>
				#set($counter=$counter + 1)
					#end 
				</tbody>
			</table>
#end
		</div>
	</body>
</html>