YARN-3707. RM Web UI queue filter doesn't work. Contributed by Wangda Tan

This commit is contained in:
Jian He 2015-05-22 15:58:22 -07:00
parent 455b3acf0e
commit 446d51591e
2 changed files with 5 additions and 3 deletions

View File

@ -435,6 +435,8 @@ Release 2.8.0 - UNRELEASED
YARN-3654. ContainerLogsPage web UI should not have meta-refresh. (Xuan Gong
via jianhe)
YARN-3707. RM Web UI queue filter doesn't work. (Wangda Tan via jianhe)
Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -350,7 +350,7 @@ public void render(Block html) {
a(_Q).$style(width(Q_MAX_WIDTH)).
span().$style(join(width(used), ";left:0%;",
used > 1 ? Q_OVER : Q_UNDER))._(".")._().
span(".q", "root")._().
span(".q", "Queue: root")._().
span().$class("qstats").$style(left(Q_STATS_POS)).
_(join(percent(used), " used"))._().
_(QueueBlock.class)._();
@ -514,8 +514,8 @@ public void render(HtmlBlock.Block html) {
" });",
" $('#cs').bind('select_node.jstree', function(e, data) {",
" var q = $('.q', data.rslt.obj).first().text();",
" if (q == 'root') q = '';",
" else q = '^' + q.substr(q.lastIndexOf('.') + 1) + '$';",
" if (q == 'Queue: root') q = '';",
" else q = '^' + q.substr(q.lastIndexOf(':') + 2) + '$';",
" $('#apps').dataTable().fnFilter(q, 4, true);",
" });",
" $('#cs').show();",