/** * 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'), getUrl:function (testUrl, url) { return (App.testMode) ? testUrl : App.apiPrefix + '/clusters/' + this.get('clusterName') + url; }, /** * Start polling, when isWorking become true */ updateAll:function(){ if(this.get('isWorking')) { App.updater.run(this, 'updateHost', 'isWorking'); App.updater.run(this, 'updateServiceMetric', 'isWorking'); App.updater.run(this, 'graphsUpdate', 'isWorking'); } }.observes('isWorking'), updateHost:function(callback) { var self = this; var testUrl = App.get('isHadoop2Stack') ? '/data/hosts/HDP2/hosts.json':'/data/hosts/hosts.json'; var hostsUrl = this.getUrl(testUrl, '/hosts?fields=Hosts/host_name,Hosts/public_host_name,Hosts/disk_info,Hosts/cpu_count,Hosts/total_mem,Hosts/host_status,Hosts/last_heartbeat_time,Hosts/os_arch,Hosts/os_type,Hosts/ip,host_components,metrics/disk,metrics/load/load_one'); 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 * @param isInitialLoad If true, only basic information is loaded. */ updateServiceMetric: function (callback, isInitialLoad) { var self = this; self.set('isUpdated', false); var conditionalFields = []; var services = [ { name: 'FLUME', urlParam: 'flume/flume' }, { name: 'YARN', urlParam: 'yarn/Queue' } ]; services.forEach(function(service) { if (App.Service.find(service.name)) { conditionalFields.push("components/host_components/metrics/" + service.urlParam); } }); var conditionalFieldsString = conditionalFields.length > 0 ? ',' + conditionalFields.join(',') : ''; var methodStartTs = new Date().getTime(); var testUrl = App.get('isHadoop2Stack') ? '/data/dashboard/HDP2/services.json':'/data/dashboard/services.json'; var servicesUrl = isInitialLoad ? //this.getUrl('/data/dashboard/services.json', '/services?fields=components/ServiceComponentInfo,components/host_components,components/host_components/HostRoles') : this.getUrl(testUrl, '/services?fields=components/ServiceComponentInfo,components/host_components,components/host_components/HostRoles,components/host_components/metrics/jvm/memHeapUsedM,components/host_components/metrics/jvm/memHeapCommittedM,components/host_components/metrics/mapred/jobtracker/trackers_decommissioned,components/host_components/metrics/cpu/cpu_wio,components/host_components/metrics/rpc/RpcQueueTime_avg_time'+conditionalFieldsString) : this.getUrl(testUrl, '/services?fields=components/ServiceComponentInfo,components/host_components,components/host_components/HostRoles,components/host_components/metrics/jvm/memHeapUsedM,components/host_components/metrics/jvm/memHeapCommittedM,components/host_components/metrics/mapred/jobtracker/trackers_decommissioned,components/host_components/metrics/cpu/cpu_wio,components/host_components/metrics/rpc/RpcQueueTime_avg_time'+conditionalFieldsString); var callback = callback || function (jqXHR, textStatus) { self.set('isUpdated', true); }; App.HttpClient.get(servicesUrl, App.servicesMapper, { complete: function(){ console.log("UpdateServiceMetric() Finished in:"+ (new Date().getTime()-methodStartTs) + " ms"); callback(); } }); } });