mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 11:00:03 -03:30
Handling play and task parallel arrival seems to be working now. Removed 'search' and 'status' labels from search dialogs. Job events viewer now displays JSON objects as nested tables. Re-ordered host event viewer fields, adding host name, and fixing links so that only the status column is clickable.
77 lines
1.9 KiB
JavaScript
77 lines
1.9 KiB
JavaScript
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* JobEventsForm.js
|
|
*
|
|
*/
|
|
angular.module('EventsViewerFormDefinition', [])
|
|
.value('EventsViewerForm', {
|
|
|
|
fields: {
|
|
status: {
|
|
label: 'Status',
|
|
section: 'Event'
|
|
},
|
|
id: {
|
|
label: 'ID',
|
|
section: 'Event'
|
|
},
|
|
created: {
|
|
label: 'Created On',
|
|
section: 'Event'
|
|
},
|
|
host_name: {
|
|
label: 'Host',
|
|
section: 'Event'
|
|
},
|
|
role: {
|
|
label: 'Role',
|
|
section: 'Event'
|
|
},
|
|
play: {
|
|
label: 'Play',
|
|
type: 'text',
|
|
section: 'Event'
|
|
},
|
|
task: {
|
|
label: 'Task',
|
|
section: 'Event'
|
|
},
|
|
item: {
|
|
label: 'Item',
|
|
section: 'Event'
|
|
},
|
|
module_name: {
|
|
label: 'Module',
|
|
section: 'Event'
|
|
},
|
|
module_args: {
|
|
label: 'Arguments',
|
|
section: 'Event'
|
|
},
|
|
rc: {
|
|
label: 'Return Code',
|
|
section: 'Results'
|
|
},
|
|
msg: {
|
|
label: 'Message',
|
|
section: 'Results'
|
|
},
|
|
results: {
|
|
label: 'Results',
|
|
section: 'Results'
|
|
},
|
|
start: {
|
|
label: 'Start',
|
|
section: 'Timing'
|
|
},
|
|
end: {
|
|
label: 'End',
|
|
section: 'Timing'
|
|
},
|
|
delta: {
|
|
label: 'Elapsed',
|
|
section: 'Timing'
|
|
}
|
|
}
|
|
}); |