Condividi tramite


TaskStatistics Constructors

Definition

Overloads

TaskStatistics()

Initializes a new instance of the TaskStatistics class.

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

Initializes a new instance of the TaskStatistics class.

TaskStatistics()

Source:
TaskStatistics.cs

Initializes a new instance of the TaskStatistics class.

public TaskStatistics ();
Public Sub New ()

Applies to

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

Source:
TaskStatistics.cs

Initializes a new instance of the TaskStatistics class.

public TaskStatistics (string url, DateTime startTime, DateTime lastUpdateTime, TimeSpan userCPUTime, TimeSpan kernelCPUTime, TimeSpan wallClockTime, long readIOps, long writeIOps, double readIOGiB, double writeIOGiB, TimeSpan waitTime);
new Microsoft.Azure.Batch.Protocol.Models.TaskStatistics : string * DateTime * DateTime * TimeSpan * TimeSpan * TimeSpan * int64 * int64 * double * double * TimeSpan -> Microsoft.Azure.Batch.Protocol.Models.TaskStatistics
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, 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 the Task.

kernelCPUTime
TimeSpan

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

wallClockTime
TimeSpan

The total wall clock time of the Task.

readIOps
Int64

The total number of disk read operations made by the Task.

writeIOps
Int64

The total number of disk write operations made by the Task.

readIOGiB
Double

The total gibibytes read from disk by the Task.

writeIOGiB
Double

The total gibibytes written to disk by the Task.

waitTime
TimeSpan

The total wait time of the Task. 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.)

Applies to