123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- /**
- * 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.
- */
- var App = require('app');
- App.UpdateController = Em.Controller.extend({
- name: 'updateController',
- isUpdated: false,
- cluster: null,
- isWorking: false,
- timeIntervalId: null,
- clusterName: function () {
- return App.router.get('clusterController.clusterName');
- }.property('App.router.clusterController.clusterName'),
- location: function () {
- return App.router.get('location.lastSetURL');
- }.property('App.router.location.lastSetURL'),
- getUrl: function (testUrl, url) {
- return (App.testMode) ? testUrl : App.apiPrefix + '/clusters/' + this.get('clusterName') + url;
- },
- /**
- * construct URL from real URL and query parameters
- * @param testUrl
- * @param realUrl
- * @param queryParams
- * @return {String}
- */
- getComplexUrl: function (testUrl, realUrl, queryParams) {
- var url = App.apiPrefix + '/clusters/' + App.get('clusterName');
- var params = '';
- if (App.testMode) {
- url = testUrl;
- } else {
- if (queryParams) {
- queryParams.forEach(function (param) {
- params += param.key + '=' + param.value + '&';
- });
- }
- url += realUrl.replace('<parameters>', params);
- }
- return url;
- },
- /**
- * depict query parameters of table
- */
- queryParams: Em.Object.create({
- 'Hosts': []
- }),
- /**
- * map describes relations between updater function and table
- */
- tableUpdaterMap: {
- 'Hosts': 'updateHost'
- },
- /**
- * Start polling, when <code>isWorking</code> become true
- */
- updateAll: function () {
- if (this.get('isWorking')) {
- App.updater.run(this, 'updateServices', 'isWorking');
- App.updater.run(this, 'updateHostConditionally', 'isWorking');
- App.updater.run(this, 'updateServiceMetricConditionally', 'isWorking', App.componentsUpdateInterval);
- App.updater.run(this, 'updateComponentsState', 'isWorking', App.componentsUpdateInterval);
- App.updater.run(this, 'graphsUpdate', 'isWorking');
- if (App.supports.hostOverrides) {
- App.updater.run(this, 'updateComponentConfig', 'isWorking');
- }
- }
- }.observes('isWorking'),
- /**
- * Update hosts depending on which page is open
- * Make a call only on follow pages:
- * /main/hosts
- * /main/hosts/*
- * /main/charts/heatmap
- * @param callback
- */
- updateHostConditionally: function (callback) {
- if (/\/main\/(hosts|charts\/heatmap).*/.test(this.get('location'))) {
- this.updateHost(callback);
- } else {
- callback();
- }
- },
- /**
- * Update service metrics depending on which page is open
- * Make a call only on follow pages:
- * /main/dashboard
- * /main/services/*
- * @param callback
- */
- updateServiceMetricConditionally: function (callback) {
- if (/\/main\/(dashboard|services).*/.test(this.get('location'))) {
- this.updateServiceMetric(callback);
- } else {
- callback();
- }
- },
- updateHost: function (callback) {
- var testUrl = App.get('isHadoop2Stack') ? '/data/hosts/HDP2/hosts.json' : '/data/hosts/hosts.json';
- var realUrl = '/hosts?<parameters>fields=Hosts/host_name,Hosts/maintenance_state,Hosts/public_host_name,Hosts/cpu_count,Hosts/ph_cpu_count,Hosts/total_mem,' +
- 'Hosts/host_status,Hosts/last_heartbeat_time,Hosts/os_arch,Hosts/os_type,Hosts/ip,host_components/HostRoles/state,host_components/HostRoles/maintenance_state,' +
- 'Hosts/disk_info,metrics/disk,metrics/load/load_one,metrics/cpu/cpu_system,metrics/cpu/cpu_user,' +
- 'metrics/memory/mem_total,metrics/memory/mem_free,alerts/summary&minimal_response=true';
- var hostsUrl = this.getComplexUrl(testUrl, realUrl, this.get('queryParams.Hosts'));
- App.HttpClient.get(hostsUrl, App.hostsMapper, {
- complete: callback
- });
- },
- graphs: [],
- graphsUpdate: function (callback) {
- var existedGraphs = [];
- this.get('graphs').forEach(function (_graph) {
- var view = Em.View.views[_graph.id];
- if (view) {
- existedGraphs.push(_graph);
- //console.log('updated graph', _graph.name);
- view.loadData();
- //if graph opened as modal popup update it to
- if ($(".modal-graph-line .modal-body #" + _graph.popupId + "-container-popup").length) {
- view.loadData();
- }
- }
- });
- callback();
- this.set('graphs', existedGraphs);
- },
- /**
- * Updates the services information.
- *
- * @param callback
- */
- updateServiceMetric: function (callback) {
- var self = this;
- self.set('isUpdated', false);
- var conditionalFields = this.getConditionalFields();
- var conditionalFieldsString = conditionalFields.length > 0 ? ',' + conditionalFields.join(',') : '';
- var testUrl = App.get('isHadoop2Stack') ? '/data/dashboard/HDP2/master_components.json' : '/data/dashboard/services.json';
- var isFlumeInstalled = App.cache['services'].mapProperty('ServiceInfo.service_name').contains('FLUME');
- var flumeHandlerParam = isFlumeInstalled ? 'ServiceComponentInfo/component_name=FLUME_HANDLER|' : '';
- var realUrl = '/components/?' + flumeHandlerParam +
- 'ServiceComponentInfo/category=MASTER&fields=' +
- 'ServiceComponentInfo/Version,' +
- 'ServiceComponentInfo/StartTime,' +
- 'ServiceComponentInfo/HeapMemoryUsed,' +
- 'ServiceComponentInfo/HeapMemoryMax,' +
- 'ServiceComponentInfo/service_name,' +
- 'host_components/HostRoles/host_name,' +
- 'host_components/HostRoles/state,' +
- 'host_components/HostRoles/maintenance_state,' +
- 'host_components/HostRoles/stale_configs,' +
- 'host_components/metrics/jvm/memHeapUsedM,' +
- 'host_components/metrics/jvm/HeapMemoryMax,' +
- 'host_components/metrics/jvm/HeapMemoryUsed,' +
- 'host_components/metrics/jvm/memHeapCommittedM,' +
- 'host_components/metrics/mapred/jobtracker/trackers_decommissioned,' +
- 'host_components/metrics/cpu/cpu_wio,' +
- 'host_components/metrics/rpc/RpcQueueTime_avg_time,' +
- 'host_components/metrics/dfs/FSNamesystem/*,' +
- 'host_components/metrics/dfs/namenode/Version,' +
- 'host_components/metrics/dfs/namenode/DecomNodes,' +
- 'host_components/metrics/dfs/namenode/TotalFiles,' +
- 'host_components/metrics/dfs/namenode/UpgradeFinalized,' +
- 'host_components/metrics/dfs/namenode/Safemode,' +
- 'host_components/metrics/runtime/StartTime' +
- conditionalFieldsString +
- '&minimal_response=true';
- var servicesUrl = this.getUrl(testUrl, realUrl);
- callback = callback || function () {
- self.set('isUpdated', true);
- };
- App.HttpClient.get(servicesUrl, App.serviceMetricsMapper, {
- complete: function () {
- callback();
- }
- });
- },
- /**
- * construct conditional parameters of query, depending on which services are installed
- * @return {Array}
- */
- getConditionalFields: function () {
- var conditionalFields = [];
- var serviceSpecificParams = {
- 'FLUME': "host_components/metrics/flume/flume," +
- "host_components/processes/HostComponentProcess",
- 'YARN': "host_components/metrics/yarn/Queue," +
- "ServiceComponentInfo/rm_metrics/cluster/activeNMcount," +
- "ServiceComponentInfo/rm_metrics/cluster/unhealthyNMcount," +
- "ServiceComponentInfo/rm_metrics/cluster/rebootedNMcount," +
- "ServiceComponentInfo/rm_metrics/cluster/decommissionedNMcount",
- 'HBASE': "host_components/metrics/hbase/master/IsActiveMaster," +
- "ServiceComponentInfo/MasterStartTime," +
- "ServiceComponentInfo/MasterActiveTime," +
- "ServiceComponentInfo/AverageLoad," +
- "ServiceComponentInfo/Revision," +
- "ServiceComponentInfo/RegionsInTransition",
- 'MAPREDUCE': "ServiceComponentInfo/AliveNodes," +
- "ServiceComponentInfo/GrayListedNodes," +
- "ServiceComponentInfo/BlackListedNodes," +
- "ServiceComponentInfo/jobtracker/*,",
- 'STORM': "metrics/api/cluster/summary,"
- };
- var services = App.cache['services'];
- services.forEach(function (service) {
- var urlParams = serviceSpecificParams[service.ServiceInfo.service_name];
- if (urlParams) {
- conditionalFields.push(urlParams);
- }
- });
- return conditionalFields;
- },
- updateServices: function (callback) {
- var testUrl = '/data/services/HDP2/services.json';
- var componentConfigUrl = this.getUrl(testUrl, '/services?fields=alerts/summary,ServiceInfo/state,ServiceInfo/maintenance_state&minimal_response=true');
- App.HttpClient.get(componentConfigUrl, App.serviceMapper, {
- complete: callback
- });
- },
- updateComponentConfig: function (callback) {
- var testUrl = '/data/services/host_component_stale_configs.json';
- var componentConfigUrl = this.getUrl(testUrl, '/host_components?fields=HostRoles/host_name&HostRoles/stale_configs=true&minimal_response=true');
- App.HttpClient.get(componentConfigUrl, App.componentConfigMapper, {
- complete: callback
- });
- },
- updateComponentsState: function (callback) {
- var testUrl = '/data/services/HDP2/components_state.json';
- var realUrl = '/components/?ServiceComponentInfo/category.in(SLAVE,CLIENT)&fields=ServiceComponentInfo/service_name,' +
- 'ServiceComponentInfo/installed_count,ServiceComponentInfo/started_count,ServiceComponentInfo/total_count&minimal_response=true';
- var url = this.getUrl(testUrl, realUrl);
- App.HttpClient.get(url, App.componentsStateMapper, {
- complete: callback
- });
- }
- });
|