-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HBASE-23994:Add WebUI to Canary #1292
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
2e1cf6a
HBASE-23994:Add WebUI to Canary
GeorryHuang b168847
HBASE-23994:Add WebUI to Canary(Modify code)
GeorryHuang 717fb3f
HBASE-23994:Add WebUI to Canary(Map to ConcurrentMap)
GeorryHuang 22658fe
HBASE-23994:Add WebUI to Canary(Checkstyle)
GeorryHuang 102c8e3
HBASE-23994:Add WebUI to Canary(Revise according to comments)
GeorryHuang d5403ea
HBASE-23994:Add WebUI to Canary(Purge tabs and add assertions to Test…
GeorryHuang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
156 changes: 156 additions & 0 deletions
156
hbase-server/src/main/jamon/org/apache/hadoop/hbase/tmpl/tool/CanaryStatusTmpl.jamon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
|
||
<%doc> | ||
|
||
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. | ||
</%doc> | ||
<%args> | ||
RegionStdOutSink sink; | ||
</%args> | ||
<%import> | ||
java.util.Map; | ||
java.util.concurrent.atomic.LongAdder; | ||
org.apache.hadoop.hbase.ServerName; | ||
org.apache.hadoop.hbase.tool.CanaryTool.RegionStdOutSink; | ||
</%import> | ||
|
||
<!--[if IE]> | ||
<!DOCTYPE html> | ||
<![endif]--> | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Canary</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content=""> | ||
<link href="/static/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="/static/css/bootstrap-theme.min.css" rel="stylesheet"> | ||
<link href="/static/css/hbase.css" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="navbar navbar-fixed-top navbar-default"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="/canary-status"><img src="/static/hbase_logo_small.png" alt="HBase Logo"/></a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
<section> | ||
<h2>Failed Servers</h2> | ||
<%java> | ||
Map<ServerName, LongAdder> perServerFailuresCount = sink.getPerServerFailuresCount(); | ||
</%java> | ||
<table class="table table-striped"> | ||
<tr> | ||
<th>Server</th> | ||
<th>Failures Count</th> | ||
</tr> | ||
<%if (perServerFailuresCount != null && perServerFailuresCount.size() > 0)%> | ||
<%for Map.Entry<ServerName, LongAdder> entry : perServerFailuresCount.entrySet() %> | ||
<tr> | ||
<td><& serverNameLink ; serverName = entry.getKey() &></td> | ||
<td><% entry.getValue() %></td> | ||
</tr> | ||
</%for> | ||
</%if> | ||
<tr><td>Total Failed Servers: <% (perServerFailuresCount != null) ? perServerFailuresCount.size() : 0 %></td></tr> | ||
</table> | ||
</section> | ||
<section> | ||
<h2>Failed Tables</h2> | ||
<%java> | ||
Map<String, LongAdder> perTableFailuresCount = sink.getPerTableFailuresCount(); | ||
</%java> | ||
<table class="table table-striped"> | ||
<tr> | ||
<th>Table</th> | ||
<th>Failures Count</th> | ||
</tr> | ||
<%if (perTableFailuresCount != null && perTableFailuresCount.size() > 0)%> | ||
<%for Map.Entry<String, LongAdder> entry : perTableFailuresCount.entrySet()%> | ||
<tr> | ||
<td><% entry.getKey() %></td> | ||
<td><% entry.getValue() %></td> | ||
</tr> | ||
</%for> | ||
</%if> | ||
<tr><td>Total Failed Tables: <% (perTableFailuresCount != null) ? perTableFailuresCount.size() : 0 %></td></tr> | ||
</table> | ||
</section> | ||
|
||
<section> | ||
<h2>Software Attributes</h2> | ||
<table id="attributes_table" class="table table-striped"> | ||
<tr> | ||
<th>Attribute Name</th> | ||
<th>Value</th> | ||
<th>Description</th> | ||
</tr> | ||
<tr> | ||
<td>HBase Version</td> | ||
<td><% org.apache.hadoop.hbase.util.VersionInfo.getVersion() %>, r<% org.apache.hadoop.hbase.util.VersionInfo.getRevision() %></td><td>HBase version and revision</td> | ||
</tr> | ||
<tr> | ||
<td>HBase Compiled</td> | ||
<td><% org.apache.hadoop.hbase.util.VersionInfo.getDate() %>, <% org.apache.hadoop.hbase.util.VersionInfo.getUser() %></td> | ||
<td>When HBase version was compiled and by whom</td> | ||
</tr> | ||
<tr> | ||
<td>Hadoop Version</td> | ||
<td><% org.apache.hadoop.util.VersionInfo.getVersion() %>, r<% org.apache.hadoop.util.VersionInfo.getRevision() %></td> | ||
<td>Hadoop version and revision</td> | ||
</tr> | ||
<tr> | ||
<td>Hadoop Compiled</td> | ||
<td><% org.apache.hadoop.util.VersionInfo.getDate() %>, <% org.apache.hadoop.util.VersionInfo.getUser() %></td> | ||
<td>When Hadoop version was compiled and by whom</td> | ||
</tr> | ||
</table> | ||
</section> | ||
</div> | ||
</div> <!-- /container --> | ||
|
||
<script src="/static/js/jquery.min.js" type="text/javascript"></script> | ||
<script src="/static/js/bootstrap.min.js" type="text/javascript"></script> | ||
<script src="/static/js/tab.js" type="text/javascript"></script> | ||
</body> | ||
</html> | ||
|
||
<%def serverNameLink> | ||
<%args> | ||
ServerName serverName; | ||
</%args> | ||
<%java> | ||
int infoPort = serverName.getPort() + 1; | ||
String url = "//" + serverName.getHostname() + ":" + infoPort + "/"; | ||
</%java> | ||
|
||
<%if (infoPort > 0) %> | ||
<a href="<% url %>"><% serverName.getServerName() %></a> | ||
<%else> | ||
<% serverName.getServerName() %> | ||
</%if> | ||
</%def> |
49 changes: 49 additions & 0 deletions
49
hbase-server/src/main/java/org/apache/hadoop/hbase/tool/CanaryStatusServlet.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** | ||
* | ||
* 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. | ||
*/ | ||
package org.apache.hadoop.hbase.tool; | ||
|
||
import java.io.IOException; | ||
import javax.servlet.ServletException; | ||
import javax.servlet.http.HttpServlet; | ||
import javax.servlet.http.HttpServletRequest; | ||
import javax.servlet.http.HttpServletResponse; | ||
import org.apache.hadoop.hbase.tmpl.tool.CanaryStatusTmpl; | ||
import org.apache.yetus.audience.InterfaceAudience; | ||
|
||
|
||
@InterfaceAudience.Private | ||
public class CanaryStatusServlet extends HttpServlet { | ||
@Override | ||
protected void doGet(HttpServletRequest req, HttpServletResponse resp) | ||
throws ServletException, IOException { | ||
CanaryTool.RegionStdOutSink sink = | ||
(CanaryTool.RegionStdOutSink) getServletContext().getAttribute( | ||
"sink"); | ||
if (sink == null) { | ||
throw new ServletException( | ||
"RegionStdOutSink is null! The CanaryTool's InfoServer is not initialized correctly"); | ||
} | ||
|
||
resp.setContentType("text/html"); | ||
|
||
CanaryStatusTmpl tmpl = new CanaryStatusTmpl(); | ||
tmpl.render(resp.getWriter(), sink); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
hbase-server/src/main/resources/hbase-webapps/canary/canary.jsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<%-- | ||
/** | ||
* 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 HTTP-EQUIV="REFRESH" content="0;url=/canary-status"/> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: could skip these warnings (and the whole function body) when
HBASE_CANARY_INFO_PORT == -1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will deal with it later