123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /**
- * 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;
- },
- updateAll:function(){
- var timeIntervalId = this.get('timeIntervalId');
- var self = this;
- if(this.get('isWorking')){
- if(timeIntervalId) return;
- this.set('timeIntervalId', setInterval(function(){
- this.updateAllWrapper();
- }, App.contentUpdateInterval));
- } else {
- clearInterval(timeIntervalId);
- this.set('timeIntervalId', null);
- }
- }.observes('isWorking'),
- updateAllWrapper: function() {
- this.updateHost();
- this.updateServiceMetric();
- this.graphsUpdate();
- },
- updateHost:function(){
- var hostsUrl = this.getUrl('/data/hosts/hosts.json', '/hosts?fields=Hosts,host_components,metrics/cpu,metrics/disk,metrics/load,metrics/memory');
- App.HttpClient.get(hostsUrl, App.hostsMapper, {
- complete:function (jqXHR, textStatus) {}
- });
- },
- graphs: [],
- graphsUpdate: function () {
- 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();
- }
- }
- });
- this.set('graphs', existedGraphs);
- },
-
- /**
- * Updates the services information.
- *
- * @param isInitialLoad If true, only basic information is loaded.
- */
- updateServiceMetric: function (callback, isInitialLoad) {
- var self = this;
- self.set('isUpdated', false);
- var servicesUrl = isInitialLoad ?
- this.getUrl('/data/dashboard/services.json', '/services?fields=components/ServiceComponentInfo,components/host_components,components/host_components/HostRoles') :
- this.getUrl('/data/dashboard/services.json', '/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');
- var callback = callback || function (jqXHR, textStatus) {
- self.set('isUpdated', true);
- };
- App.HttpClient.get(servicesUrl, App.servicesMapper, {
- complete: callback
- });
- }
- });
|