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 the task.
public class TaskStatistics
type TaskStatistics = class
Public Class TaskStatistics
- Inheritance
-
TaskStatistics
Properties
KernelCpuTime |
Gets the total kernel mode CPU time (per core) consumed by the task. |
LastUpdateTime |
Gets the time at which the statistics were last updated. All statistics are limited to the range between StartTime and this value. |
ReadIOGiB |
Gets the total gibibytes of I/O read from disk by the task. |
ReadIOps |
Gets the total number of disk read operations made by the task. |
StartTime |
Gets the start time of the time range covered by the statistics. |
Url |
Gets the URL of the task statistics. |
UserCpuTime |
Gets the total user mode CPU time (per core) consumed by the task. |
WaitTime |
Gets 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 the wall clock time of the task execution. |
WriteIOGiB |
Gets the total gibibytes of I/O written to disk by the task. |
WriteIOps |
Gets the total number of disk write operations made by the task. |