Share via


JobStatistics Constructors

Definition

Overloads

JobStatistics()

Initializes a new instance of the JobStatistics class.

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

Initializes a new instance of the JobStatistics class.

JobStatistics()

Source:
JobStatistics.cs

Initializes a new instance of the JobStatistics class.

public JobStatistics ();
Public Sub New ()

Applies to

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

Source:
JobStatistics.cs

Initializes a new instance of the JobStatistics class.

public JobStatistics (string url, DateTime startTime, DateTime lastUpdateTime, TimeSpan userCPUTime, TimeSpan kernelCPUTime, TimeSpan wallClockTime, long readIOps, long writeIOps, double readIOGiB, double writeIOGiB, long numSucceededTasks, long numFailedTasks, long numTaskRetries, TimeSpan waitTime);
new Microsoft.Azure.Batch.Protocol.Models.JobStatistics : string * DateTime * DateTime * TimeSpan * TimeSpan * TimeSpan * int64 * int64 * double * double * int64 * int64 * int64 * TimeSpan -> Microsoft.Azure.Batch.Protocol.Models.JobStatistics
Public Sub New (url As String, startTime As DateTime, lastUpdateTime As DateTime, userCPUTime As TimeSpan, kernelCPUTime As TimeSpan, wallClockTime As TimeSpan, readIOps As Long, writeIOps As Long, readIOGiB As Double, writeIOGiB As Double, numSucceededTasks As Long, numFailedTasks As Long, numTaskRetries As Long, waitTime As TimeSpan)

Parameters

url
String

The URL of the statistics.

startTime
DateTime

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

lastUpdateTime
DateTime

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

userCPUTime
TimeSpan

The total user mode CPU time (summed across all cores and all Compute Nodes) consumed by all Tasks in the Job.

kernelCPUTime
TimeSpan

The total kernel mode CPU time (summed across all cores and all Compute Nodes) consumed by all Tasks in the Job.

wallClockTime
TimeSpan

The total wall clock time of all Tasks in the Job.

readIOps
Int64

The total number of disk read operations made by all Tasks in the Job.

writeIOps
Int64

The total number of disk write operations made by all Tasks in the Job.

readIOGiB
Double

The total amount of data in GiB read from disk by all Tasks in the Job.

writeIOGiB
Double

The total amount of data in GiB written to disk by all Tasks in the Job.

numSucceededTasks
Int64

The total number of Tasks successfully completed in the Job during the given time range.

numFailedTasks
Int64

The total number of Tasks in the Job that failed during the given time range.

numTaskRetries
Int64

The total number of retries on all the Tasks in the Job during the given time range.

waitTime
TimeSpan

The total wait time of all Tasks in the Job.

Applies to