123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /**
- * 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.MainDashboardController = Em.Controller.extend({
- name:'mainDashboardController',
- alerts: App.Alert.find(),
- data: {
- HDFS:{
- "namenode_addr":"namenode:50070",
- "secondary_namenode_addr":"snamenode:50090",
- "namenode_starttime":1348935028,
- "total_nodes":"1",
- "live_nodes":1,
- "dead_nodes":0,
- "decommissioning_nodes":0,
- "dfs_blocks_underreplicated":145,
- "safemode":false,
- "pending_upgrades":false,
- "dfs_configured_capacity":885570207744,
- "dfs_percent_used":0.01,
- "dfs_percent_remaining":95.09,
- "dfs_total_bytes":885570207744,
- "dfs_used_bytes":104898560,
- "nondfs_used_bytes":43365113856,
- "dfs_free_bytes":842100195328,
- // additionals
- "total_files_and_dirs": 1354,
- "namenode_heap_used":63365113856,
- "namenode_heap_total": 163365113856
- },
- MAPREDUCE: {
- "jobtracker_addr": "jobtracker:50030",
- "jobtracker_starttime": 1348935243,
- "running_jobs": 1,
- "waiting_jobs": 0,
- "trackers_total": "1",
- "trackers_live": 1,
- "trackers_graylisted": 0,
- "trackers_blacklisted": 0,
- "chart": [4,8,7,2,1,4,3,3,3],
- // additionals
- "map_slots_occuped": 4,
- "map_slots_reserved": 8,
- "map_slots_total": 12,
- "reduce_slots_occuped": 3,
- "reduce_slots_reserved": 7,
- "reduce_slots_total": 11,
- "completed_jobs": 3,
- "failed_jobs": 2,
- "trackers_heap_used": 1348935243,
- "trackers_heap_total": 6648935243
- },
- hbase : {
- "hbasemaster_addr": "hbasemaster:60010",
- "total_regionservers": "1",
- "hbasemaster_starttime": 1348935496,
- "live_regionservers": 1,
- "dead_regionservers": 0,
- "regions_in_transition_count": 0,
- "chart": [3,7,7,5,5,3,5,3,7],
- "master_server_heap_used": 2348935243,
- "master_server_heap_total": 5648935243,
- "average_load": 1.4
- }
- },
- services:function(){
- /* TODO: create Lasy loading
- setTimeout(function(){console.log(App.Service.find().objectAt(0).get("id"))}, 20);
- */
- return App.router.get('mainServiceController.content');
- }.property('App.router.mainServiceController.content'),
- alertsFilteredBy: 'All',
- alertsFilter: function(event) {
- if (event.context)
- this.set('alertsFilteredBy', event.context.get('label'));
- else
- this.set('alertsFilteredBy', 'All');
- },
- /**
- * We do not want to re-get all the data everytime the filter
- * is changed. Hence we just filtered the alerts got during page
- * load.
- */
- displayAlerts: function(){
- if(this.get('alertsFilteredBy')=='All')
- return this.get('alerts');
- else
- var type = this.get('alertsFilteredBy').toLowerCase();
- return this.get('alerts').filter(function(item){
- return item.get('serviceType').toLowerCase()==type;
- });
- }.property('alerts', 'alertsFilteredBy'),
-
- alertsCount: function() {
- return this.get('alerts').filterProperty('status', 'corrupt').length;
- }.property('alerts')
- })
|