JobScheduleStatistics Constructors
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.
Overloads
JobScheduleStatistics() |
Initializes a new instance of the JobScheduleStatistics class. |
JobScheduleStatistics(String, DateTime, DateTime, TimeSpan, TimeSpan, TimeSpan, Int64, Int64, Double, Double, Int64, Int64, Int64, TimeSpan) |
Initializes a new instance of the JobScheduleStatistics class. |
JobScheduleStatistics()
- Source:
- JobScheduleStatistics.cs
Initializes a new instance of the JobScheduleStatistics class.
public JobScheduleStatistics ();
Public Sub New ()
Applies to
JobScheduleStatistics(String, DateTime, DateTime, TimeSpan, TimeSpan, TimeSpan, Int64, Int64, Double, Double, Int64, Int64, Int64, TimeSpan)
- Source:
- JobScheduleStatistics.cs
Initializes a new instance of the JobScheduleStatistics class.
public JobScheduleStatistics (string url, DateTime startTime, DateTime lastUpdateTime, TimeSpan userCPUTime, TimeSpan kernelCPUTime, TimeSpan wallClockTime, long readIOps, long writeIOps, double readIOGiB, double writeIOGiB, long numSucceededTasks, long numFailedTasks, long numTaskRetries, TimeSpan waitTime);
new Microsoft.Azure.Batch.Protocol.Models.JobScheduleStatistics : string * DateTime * DateTime * TimeSpan * TimeSpan * TimeSpan * int64 * int64 * double * double * int64 * int64 * int64 * TimeSpan -> Microsoft.Azure.Batch.Protocol.Models.JobScheduleStatistics
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, numSucceededTasks As Long, numFailedTasks As Long, numTaskRetries As Long, 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 all Tasks in all Jobs created under the schedule.
- kernelCPUTime
- TimeSpan
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.
- wallClockTime
- TimeSpan
The total wall clock time of all the Tasks in all the Jobs created under the schedule.
- readIOps
- Int64
The total number of disk read operations made by all Tasks in all Jobs created under the schedule.
- writeIOps
- Int64
The total number of disk write operations made by all Tasks in all Jobs created under the schedule.
- readIOGiB
- Double
The total gibibytes read from disk by all Tasks in all Jobs created under the schedule.
- writeIOGiB
- Double
The total gibibytes written to disk by all Tasks in all Jobs created under the schedule.
- numSucceededTasks
- Int64
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.
- numFailedTasks
- Int64
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.
- numTaskRetries
- Int64
The total number of retries during the given time range on all Tasks in all Jobs created under the schedule.
- waitTime
- TimeSpan
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.)
Applies to
Azure SDK for .NET