次の方法で共有


BatchJobScheduleStatistics Class

Definition

Resource usage statistics for a Job Schedule.

public class BatchJobScheduleStatistics : System.ClientModel.Primitives.IJsonModel<Azure.Compute.Batch.BatchJobScheduleStatistics>, System.ClientModel.Primitives.IPersistableModel<Azure.Compute.Batch.BatchJobScheduleStatistics>
type BatchJobScheduleStatistics = class
    interface IJsonModel<BatchJobScheduleStatistics>
    interface IPersistableModel<BatchJobScheduleStatistics>
Public Class BatchJobScheduleStatistics
Implements IJsonModel(Of BatchJobScheduleStatistics), IPersistableModel(Of BatchJobScheduleStatistics)
Inheritance
BatchJobScheduleStatistics
Implements

Properties

KernelCpuTime

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

LastUpdateTime

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

NumFailedTasks

The total number of Tasks that failed during the given time range in Jobs created under the schedule. A Task fails if it exhausts its maximum retry count without returning exit code 0.

NumSucceededTasks

The total number of Tasks successfully completed during the given time range in Jobs created under the schedule. A Task completes successfully if it returns exit code 0.

NumTaskRetries

The total number of retries during the given time range on all Tasks in all Jobs created under the schedule.

ReadIOGiB

The total gibibytes read from disk by all Tasks in all Jobs created under the schedule.

ReadIOps

The total number of disk read operations made by all Tasks in all Jobs created under the schedule.

StartTime

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

Url

The URL of the statistics.

UserCpuTime

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

WaitTime

The total wait time of all Tasks in all Jobs created under the schedule. 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.). This value is only reported in the Account lifetime statistics; it is not included in the Job statistics.

WallClockTime

The total wall clock time of all the Tasks in all the Jobs created under the schedule. The wall clock time is the elapsed time from when the Task started running on a Compute Node to when it finished (or to the last time the statistics were updated, if the Task had not finished by then). If a Task was retried, this includes the wall clock time of all the Task retries.

WriteIOGiB

The total gibibytes written to disk by all Tasks in all Jobs created under the schedule.

WriteIOps

The total number of disk write operations made by all Tasks in all Jobs created under the schedule.

Explicit Interface Implementations

IJsonModel<BatchJobScheduleStatistics>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<BatchJobScheduleStatistics>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<BatchJobScheduleStatistics>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<BatchJobScheduleStatistics>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<BatchJobScheduleStatistics>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to