blob: 107ecdb82bd0a501c4fbf5892a732814a8fb769d [file] [log] [blame]
/**
* 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 MultiTableController from '../multi-table';
import ColumnDefinition from '../../utils/column-definition';
import AutoCounterColumn from '../../mixins/auto-counter-column';
export default MultiTableController.extend(AutoCounterColumn, {
breadcrumbs: [{
text: "Task Attempts",
routeName: "vertex.attempts",
}],
columns: ColumnDefinition.make([{
id: 'index',
headerTitle: 'Attempt No',
contentPath: 'index',
cellComponentName: 'em-table-linked-cell',
getCellContent: function (row) {
return {
routeName: "attempt",
model: row.get("entityID"),
text: row.get("index")
};
}
},{
id: 'taskIndex',
headerTitle: 'Task Index',
contentPath: 'taskIndex',
cellComponentName: 'em-table-linked-cell',
getCellContent: function (row) {
return {
routeName: "task",
model: row.get("taskID"),
text: row.get("taskIndex")
};
}
},{
id: 'status',
headerTitle: 'Status',
contentPath: 'status',
cellComponentName: 'em-table-status-cell',
observePath: true
},{
id: 'progress',
headerTitle: 'Progress',
contentPath: 'progress',
cellComponentName: 'em-table-progress-cell',
observePath: true
},{
id: 'startTime',
headerTitle: 'Start Time',
contentPath: 'startTime',
cellComponentName: 'date-formatter',
},{
id: 'endTime',
headerTitle: 'End Time',
contentPath: 'endTime',
cellComponentName: 'date-formatter',
},{
id: 'duration',
headerTitle: 'Duration',
contentPath: 'duration',
cellDefinition: {
type: 'duration'
}
},{
id: 'containerID',
headerTitle: 'Container',
contentPath: 'containerID'
},{
id: 'nodeID',
headerTitle: 'Node',
contentPath: 'nodeID'
}, {
id: 'log',
headerTitle: 'Log',
contentPath: 'logURL',
cellComponentName: 'em-table-linked-cell',
cellDefinition: {
target: "_blank"
},
getCellContent: function (row) {
if(row.get("logURL")) {
return [{
href: row.get("logURL"),
text: "View"
}, {
href: row.get("logURL"),
text: "Download",
download: true
}];
}
}
}, {
id: 'container log',
headerTitle: 'Container Logs',
contentPath: 'containerLogURL',
cellComponentName: 'em-table-linked-cell',
cellDefinition: {
target: "_blank"
},
getCellContent: function (row) {
if(row.get("containerLogURL")) {
return [{
href: row.get("containerLogURL"),
text: "View"
}, {
href: row.get("containerLogURL"),
text: "Download",
download: true
}];
}
}
}])
});