TaskStatistics Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Resource usage statistics for a Task.
public class TaskStatistics
type TaskStatistics = class
Public Class TaskStatistics
- Inheritance
-
TaskStatistics
Constructors
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. |
Properties
KernelCPUTime |
Gets or sets the total kernel mode CPU time (summed across all cores and all Compute Nodes) consumed by the Task. |
LastUpdateTime |
Gets or sets the time at which the statistics were last updated. All statistics are limited to the range between startTime and lastUpdateTime. |
ReadIOGiB |
Gets or sets the total gibibytes read from disk by the Task. |
ReadIOps |
Gets or sets the total number of disk read operations made by the Task. |
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 the Task. |
WaitTime |
Gets or sets 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.) |
WallClockTime |
Gets or sets the total wall clock time of the Task. |
WriteIOGiB |
Gets or sets the total gibibytes written to disk by the Task. |
WriteIOps |
Gets or sets the total number of disk write operations made by the Task. |
Applies to
Azure SDK for .NET