@maap-jupyterlab/dps-jupyter-extension
Version:
A JupyterLab extension for submitting and viewing jobs.
43 lines (42 loc) • 797 B
JavaScript
/**
* Describes the fields to be displayed in the GeneralJobsInfo table component.
* The accessors are relative to the IJob type.
*/
export const GENERAL_JOBS_INFO = [
{
header: "Tag",
accessor: "tags"
},
{
header: "Payload ID",
accessor: "payload_id"
},
{
header: "Job ID",
accessor: "job_id"
},
{
header: "Status",
accessor: "status"
},
{
header: "Queued Time",
accessor: "time_queued"
},
{
header: "Start Time",
accessor: "time_start"
},
{
header: "End Time",
accessor: "time_end"
},
{
header: "Duration",
accessor: "duration"
},
{
header: "Resource",
accessor: "queue"
}
];