Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface JobScheduleStatistics

Package version

An interface representing JobScheduleStatistics.

summary

Resource usage statistics for a job schedule.

Hierarchy

  • JobScheduleStatistics

Index

Properties

kernelCPUTime

kernelCPUTime: string

The total kernel mode CPU time (summed across all cores and all compute nodes) consumed by all tasks in all jobs created under the schedule.

lastUpdateTime

lastUpdateTime: Date

The time at which the statistics were last updated. All statistics are limited to the range between startTime and lastUpdateTime.

numFailedTasks

numFailedTasks: number

The total number of tasks that failed during the given time range in jobs created under the schedule. A task fails if it exhausts its maximum retry count without returning exit code 0.

numSucceededTasks

numSucceededTasks: number

The total number of tasks successfully completed during the given time range in jobs created under the schedule. A task completes successfully if it returns exit code 0.

numTaskRetries

numTaskRetries: number

The total number of retries during the given time range on all tasks in all jobs created under the schedule.

readIOGiB

readIOGiB: number

The total gibibytes read from disk by all tasks in all jobs created under the schedule.

readIOps

readIOps: number

The total number of disk read operations made by all tasks in all jobs created under the schedule.

startTime

startTime: Date

The start time of the time range covered by the statistics.

url

url: string

The URL of the statistics.

userCPUTime

userCPUTime: string

The total user mode CPU time (summed across all cores and all compute nodes) consumed by all tasks in all jobs created under the schedule.

waitTime

waitTime: string

The total wait time of all tasks in all jobs created under the schedule. The wait time for a task is defined as the elapsed time between the creation of the task and the start of task execution. (If the task is retried due to failures, the wait time is the time to the most recent task execution.). This value is only reported in the account lifetime statistics; it is not included in the job statistics.

wallClockTime

wallClockTime: string

The total wall clock time of all the tasks in all the jobs created under the schedule. The wall clock time is the elapsed time from when the task started running on a compute node to when it finished (or to the last time the statistics were updated, if the task had not finished by then). If a task was retried, this includes the wall clock time of all the task retries.

writeIOGiB

writeIOGiB: number

The total gibibytes written to disk by all tasks in all jobs created under the schedule.

writeIOps

writeIOps: number

The total number of disk write operations made by all tasks in all jobs created under the schedule.

Generated using TypeDoc