123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- /**
- * 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.
- */
- import Ember from 'ember';
- import ColumnDef from 'em-table/utils/column-definition';
- import TableDef from 'em-table/utils/table-definition';
- import Converter from 'yarn-ui/utils/converter';
- export default Ember.Controller.extend({
- tableDefinition: TableDef.create({
- sortColumnId: 'stTime',
- sortOrder: 'desc'
- }),
- columns: function() {
- var colums = [];
- colums.push({
- id: 'appId',
- headerTitle: 'Application ID',
- contentPath: 'id',
- cellComponentName: 'em-table-linked-cell',
- minWidth: "280px",
- facetType: null,
- getCellContent: function(row) {
- return {
- displayText: row.id,
- href: `#/yarn-app/${row.id}/attempts`
- };
- }
- }, {
- id: 'appType',
- headerTitle: 'Application Type',
- contentPath: 'applicationType',
- facetType: null,
- }, {
- id: 'appName',
- headerTitle: 'Application Name',
- cellComponentName: 'em-table-tooltip-text',
- contentPath: 'appName',
- facetType: null,
- }, {
- id: 'appUsr',
- headerTitle: 'User',
- contentPath: 'user',
- minWidth: "50px"
- }, {
- id: 'state',
- headerTitle: 'State',
- contentPath: 'state',
- cellComponentName: 'em-table-simple-status-cell',
- minWidth: "50px"
- }, {
- id: 'queue',
- headerTitle: 'Queue',
- cellComponentName: 'em-table-tooltip-text',
- contentPath: 'queue',
- }, {
- id: 'progress',
- headerTitle: 'Progress',
- contentPath: 'progress',
- cellComponentName: 'em-table-progress-cell',
- facetType: null,
- cellDefinition: {
- valueMax: 100
- }
- }, {
- id: 'stTime',
- headerTitle: 'Start Time',
- contentPath: 'startTime',
- facetType: null,
- getCellContent: function(row) {
- return Converter.timeStampToDate(row.get('startTime'));
- }
- }, {
- id: 'elTime',
- headerTitle: 'Elapsed Time',
- contentPath: 'elapsedTime',
- facetType: null,
- cellDefinition: {
- type: "duration"
- }
- }, {
- id: 'finishTime',
- headerTitle: 'Finished Time',
- contentPath: 'validatedFinishedTs',
- facetType: null,
- observePath: true
- }, {
- id: 'priority',
- headerTitle: 'Priority',
- contentPath: 'priority',
- }, {
- id: 'cluster',
- headerTitle: '%Cluster',
- contentPath: 'clusterUsagePercentage',
- observePath: true
- });
- return ColumnDef.make(colums);
- }.property(),
- serviceColumns: function() {
- var colums = [];
- colums.push({
- id: 'appName',
- headerTitle: 'Service Name',
- contentPath: 'appName',
- minWidth: "200px",
- facetType: null,
- cellComponentName: 'em-table-linked-cell',
- getCellContent: function(row) {
- return {
- displayText: row.get('appName'),
- href: `#/yarn-app/${row.id}/components?service=${row.get('appName')}`
- };
- }
- }, {
- id: 'appId',
- headerTitle: 'Application ID',
- contentPath: 'id',
- facetType: null,
- cellComponentName: 'em-table-tooltip-text',
- minWidth: "250px"
- }, {
- id: 'state',
- headerTitle: 'State',
- contentPath: 'state',
- cellComponentName: 'em-table-simple-status-cell',
- minWidth: "50px"
- }, {
- id: 'cluster',
- headerTitle: '%Cluster',
- contentPath: 'clusterUsagePercentage',
- facetType: null,
- observePath: true
- }, {
- id: 'elTime',
- headerTitle: 'Elapsed Time',
- contentPath: 'elapsedTime',
- facetType: null,
- cellDefinition: {
- type: "duration"
- },
- minWidth: "200px"
- }, {
- id: 'appUsr',
- headerTitle: 'User',
- contentPath: 'user',
- facetType: null,
- minWidth: "50px"
- }, {
- id: 'queue',
- headerTitle: 'Queue',
- contentPath: 'queue',
- cellComponentName: 'em-table-tooltip-text',
- }, {
- id: 'stTime',
- headerTitle: 'Started Time',
- contentPath: 'startTime',
- facetType: null,
- getCellContent: function(row) {
- return Converter.timeStampToDate(row.get('startTime'));
- }
- }, {
- id: 'finishTime',
- headerTitle: 'Finished Time',
- contentPath: 'validatedFinishedTs',
- facetType: null,
- observePath: true
- });
- return ColumnDef.make(colums);
- }.property(),
- });
|