JobStatistics 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 job.
public class JobStatistics
type JobStatistics = class
Public Class JobStatistics
- Inheritance
-
JobStatistics
Properties
FailedTaskCount |
Gets the total number of task failures in the job. |
KernelCpuTime |
Gets the total kernel mode CPU time (per core) consumed by all tasks in the job. |
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 all tasks in the job. |
ReadIOps |
Gets the total number of disk read operations made by all tasks in the job. |
StartTime |
Gets the start time of the time range covered by the statistics. |
SucceededTaskCount |
Gets the total number of tasks successfully completed in the job during the given time range. |
TaskRetryCount |
Gets the total number of task retries in the job. |
Url |
Gets the URL of the job statistics. |
UserCpuTime |
Gets the total user mode CPU time (per core) consumed by all tasks in the job. |
WaitTime |
Gets the total wait time of all tasks in the job. 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 total elapsed time. |
WriteIOGiB |
Gets the total gibibytes of I/O written to disk by all tasks in the job. |
WriteIOps |
Gets the total number of disk write operations made by all tasks in the job. |