YARN-198. Added a link to RM pages from the NodeManager web app. Contributed by Jian He.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1455800 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
06f711d819
commit
44eb4c31b8
@ -66,6 +66,9 @@ Release 2.0.5-beta - UNRELEASED
|
||||
the per-application page are translated to html line breaks. (Omkar Vinit
|
||||
Joshi via vinodkv)
|
||||
|
||||
YARN-198. Added a link to RM pages from the NodeManager web app. (Jian He
|
||||
via vinodkv)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
@ -350,7 +350,7 @@ NodeManager createNewNodeManager() {
|
||||
ContainerManagerImpl getContainerManager() {
|
||||
return containerManager;
|
||||
}
|
||||
|
||||
|
||||
public static void main(String[] args) {
|
||||
Thread.setDefaultUncaughtExceptionHandler(new YarnUncaughtExceptionHandler());
|
||||
StringUtils.startupShutdownMessage(NodeManager.class, args, LOG);
|
||||
|
@ -18,16 +18,32 @@
|
||||
|
||||
package org.apache.hadoop.yarn.server.nodemanager.webapp;
|
||||
|
||||
import org.apache.hadoop.conf.Configuration;
|
||||
import org.apache.hadoop.yarn.conf.YarnConfiguration;
|
||||
import org.apache.hadoop.yarn.webapp.YarnWebParams;
|
||||
import org.apache.hadoop.yarn.webapp.view.HtmlBlock;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
|
||||
public class NavBlock extends HtmlBlock implements YarnWebParams {
|
||||
|
||||
private Configuration conf;
|
||||
|
||||
@Inject
|
||||
public NavBlock(Configuration conf) {
|
||||
this.conf = conf;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void render(Block html) {
|
||||
html
|
||||
|
||||
String RMWebAppURL = YarnConfiguration.getRMWebAppURL(this.conf);
|
||||
html
|
||||
.div("#nav")
|
||||
.h3()._("NodeManager")._() // TODO: Problem if no header like this
|
||||
.h3()._("ResourceManager")._()
|
||||
.ul()
|
||||
.li().a(RMWebAppURL, "RM Home")._()._()
|
||||
.h3()._("NodeManager")._() // TODO: Problem if no header like this
|
||||
.ul()
|
||||
.li()
|
||||
.a(url("node"), "Node Information")._()
|
||||
@ -37,7 +53,7 @@ protected void render(Block html) {
|
||||
.li()
|
||||
.a(url("allContainers"), "List of Containers")._()
|
||||
._()
|
||||
.h3("Tools")
|
||||
.h3("Tools")
|
||||
.ul()
|
||||
.li().a("/conf", "Configuration")._()
|
||||
.li().a("/logs", "Local logs")._()
|
||||
|
@ -42,7 +42,7 @@ public class NodePage extends NMView {
|
||||
protected void commonPreHead(HTML<_> html) {
|
||||
super.commonPreHead(html);
|
||||
|
||||
set(initID(ACCORDION, "nav"), "{autoHeight:false, active:0}");
|
||||
set(initID(ACCORDION, "nav"), "{autoHeight:false, active:1}");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user