你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

JobStatistics 构造函数

定义

重载

JobStatistics()

初始化 JobStatistics 类的新实例。

JobStatistics(String, DateTime, DateTime, TimeSpan, TimeSpan, TimeSpan, Int64, Int64, Double, Double, Int64, Int64, Int64, TimeSpan)

初始化 JobStatistics 类的新实例。

JobStatistics()

Source:
JobStatistics.cs

初始化 JobStatistics 类的新实例。

public JobStatistics ();
Public Sub New ()

适用于

JobStatistics(String, DateTime, DateTime, TimeSpan, TimeSpan, TimeSpan, Int64, Int64, Double, Double, Int64, Int64, Int64, TimeSpan)

Source:
JobStatistics.cs

初始化 JobStatistics 类的新实例。

public JobStatistics (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.JobStatistics : string * DateTime * DateTime * TimeSpan * TimeSpan * TimeSpan * int64 * int64 * double * double * int64 * int64 * int64 * TimeSpan -> Microsoft.Azure.Batch.Protocol.Models.JobStatistics
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)

参数

url
String

统计信息的 URL。

startTime
DateTime

统计信息涵盖的时间范围的开始时间。

lastUpdateTime
DateTime

上次更新统计信息的时间。 所有统计信息仅限于 startTime 和 lastUpdateTime 之间的范围。

userCPUTime
TimeSpan

作业中的所有任务) 使用的所有核心和所有计算节点 (总的用户模式 CPU 时间。

kernelCPUTime
TimeSpan

作业中所有任务) 使用的所有内核和所有计算节点 (总内核模式 CPU 时间总和。

wallClockTime
TimeSpan

作业中所有任务的总时钟时间。

readIOps
Int64

作业中所有任务执行的磁盘读取操作总数。

writeIOps
Int64

作业中所有任务执行的磁盘写入操作总数。

readIOGiB
Double

作业中所有任务从磁盘读取的 GiB 数据总量。

writeIOGiB
Double

作业中的所有任务写入磁盘的总数据量(以 GiB 为单位)。

numSucceededTasks
Int64

给定时间范围内作业中成功完成的任务总数。

numFailedTasks
Int64

作业中在给定时间范围内失败的任务总数。

numTaskRetries
Int64

给定时间范围内作业中所有任务的重试总数。

waitTime
TimeSpan

作业中所有任务的总等待时间。

适用于