Condividi tramite


JobScheduleStatistics Class

Definition

Resource usage statistics for a Job Schedule.

public class JobScheduleStatistics
type JobScheduleStatistics = class
Public Class JobScheduleStatistics
Inheritance
JobScheduleStatistics

Constructors

JobScheduleStatistics()

Initializes a new instance of the JobScheduleStatistics class.

JobScheduleStatistics(String, DateTime, DateTime, TimeSpan, TimeSpan, TimeSpan, Int64, Int64, Double, Double, Int64, Int64, Int64, TimeSpan)

Initializes a new instance of the JobScheduleStatistics class.

Properties

KernelCPUTime

Gets or sets 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

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

NumFailedTasks

Gets or sets 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

Gets or sets 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

Gets or sets the total number of retries during the given time range on all Tasks in all Jobs created under the schedule.

ReadIOGiB

Gets or sets the total gibibytes read from disk by all Tasks in all Jobs created under the schedule.

ReadIOps

Gets or sets the total number of disk read operations made by all Tasks in all Jobs created under the schedule.

StartTime

Gets or sets the start time of the time range covered by the statistics.

Url

Gets or sets the URL of the statistics.

UserCPUTime

Gets or sets 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

Gets or sets 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.)

WallClockTime

Gets or sets the total wall clock time of all the Tasks in all the Jobs created under the schedule.

WriteIOGiB

Gets or sets the total gibibytes written to disk by all Tasks in all Jobs created under the schedule.

WriteIOps

Gets or sets the total number of disk write operations made by all Tasks in all Jobs created under the schedule.

Applies to