12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /**
- * 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.MainDashboardServiceHdfsView = App.MainDashboardServiceView.extend({
- templateName:require('templates/main/dashboard/service/hdfs'),
- serviceName:'HDFS',
- Chart:App.ChartPieView.extend({
- service: null,
- data:function () {
- return [ this.get('service.capacityUsed'), this.get('service.capacityTotal') ];
- }.property('service')
- }),
- nodeUptime:function () {
- var uptime = this.get('service').get('nameNodeStartTime');
- var formatted = (new Date().getTime() - uptime).toDaysHoursMinutes();
- return this.t('dashboard.services.uptime').format(formatted.d, formatted.h, formatted.m);
- }.property("service.nameNodeStartTime"),
-
- nodeWebUrl: function(){
- return "http://"+this.get('service').get('nameNode').get('publicHostName')+":50070";
- }.property('service.nameNode'),
- nodeHeap:function () {
- var memUsed = this.get('service').get('jvmMemoryHeapUsed')*1000000;
- var memCommitted = this.get('service').get('jvmMemoryHeapCommitted')*1000000;
- var percent = memCommitted>0 ? ((100*memUsed)/memCommitted) : 0;
- return this.t('dashboard.services.hdfs.nodes.heapUsed').format(
- memUsed.bytesToSize(1, 'parseFloat'),
- memCommitted.bytesToSize(1, 'parseFloat'),
- percent.toFixed(1));
- }.property('service'),
- summaryHeader:function () {
- var text = this.t("dashboard.services.hdfs.summary");
- var svc = this.get('service');
- var liveCount = svc.get('liveDataNodes').get('length');
- var totalCount = svc.get('dataNodes').get('length');
- var total = svc.get('capacityTotal') + 0;
- var used = svc.get('capacityUsed') + 0;
- var percentRemaining = (100-Math.round((used*100)/total)).toFixed(1);
- return text.format(liveCount, totalCount, percentRemaining);
- }.property('service'),
- capacity:function () {
- var text = this.t("dashboard.services.hdfs.capacityUsed");
- var total = this.get('service').get('capacityTotal') + 0;
- var used = this.get('service').get('capacityUsed') + 0;
- var percent = Math.round((used*100)/total).toFixed(1);
- return text.format(used.bytesToSize(1), total.bytesToSize(1), percent);
- }.property('service'),
-
- dataNodeComponent: function(){
- return App.Component.find().findProperty('componentName', 'DATANODE');
- }.property('+'),
- toggleInfoView: function() {
- $('#hdfs-info').toggle('blind', 200);
- }
- });
|