Repository: ambari Updated Branches: refs/heads/trunk 8835bf993 -> 6ffef4c70
AMBARI-5557. Reorder flume agent metric sections. (akovalenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/fee25b4d Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/fee25b4d Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/fee25b4d Branch: refs/heads/trunk Commit: fee25b4d838478123a3e3da00550cd752550313c Parents: 8835bf9 Author: Aleksandr Kovalenko <[email protected]> Authored: Thu Apr 24 17:55:20 2014 +0300 Committer: Aleksandr Kovalenko <[email protected]> Committed: Thu Apr 24 18:22:49 2014 +0300 ---------------------------------------------------------------------- ambari-web/app/views/main/service/services/flume.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/fee25b4d/ambari-web/app/views/main/service/services/flume.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/main/service/services/flume.js b/ambari-web/app/views/main/service/services/flume.js index df63f79..51535c1 100644 --- a/ambari-web/app/views/main/service/services/flume.js +++ b/ambari-web/app/views/main/service/services/flume.js @@ -144,27 +144,27 @@ App.MainDashboardServiceFlumeView = App.TableView.extend({ var agentHostMock = agent.get('host.hostName'); var mockMetricData = [ { - header: 'sinkName', + header: 'channelName', metricView: App.MainServiceInfoFlumeGraphsView.extend(), metricViewData: { agent: agent, - metricType: 'SINK' + metricType: 'CHANNEL' } }, { - header: 'sourceName', + header: 'sinkName', metricView: App.MainServiceInfoFlumeGraphsView.extend(), metricViewData: { agent: agent, - metricType: 'SOURCE' + metricType: 'SINK' } }, { - header: 'channelName', + header: 'sourceName', metricView: App.MainServiceInfoFlumeGraphsView.extend(), metricViewData: { agent: agent, - metricType: 'CHANNEL' + metricType: 'SOURCE' } } ];
