共用方式為


ResourceStatistics Constructors

Definition

Overloads

ResourceStatistics()

Initializes a new instance of the ResourceStatistics class.

ResourceStatistics(DateTime, DateTime, Double, Double, Double, Double, Double, Int64, Int64, Double, Double, Double, Double)

Initializes a new instance of the ResourceStatistics class.

ResourceStatistics()

Source:
ResourceStatistics.cs

Initializes a new instance of the ResourceStatistics class.

public ResourceStatistics ();
Public Sub New ()

Applies to

ResourceStatistics(DateTime, DateTime, Double, Double, Double, Double, Double, Int64, Int64, Double, Double, Double, Double)

Source:
ResourceStatistics.cs

Initializes a new instance of the ResourceStatistics class.

public ResourceStatistics (DateTime startTime, DateTime lastUpdateTime, double avgCPUPercentage, double avgMemoryGiB, double peakMemoryGiB, double avgDiskGiB, double peakDiskGiB, long diskReadIOps, long diskWriteIOps, double diskReadGiB, double diskWriteGiB, double networkReadGiB, double networkWriteGiB);
new Microsoft.Azure.Batch.Protocol.Models.ResourceStatistics : DateTime * DateTime * double * double * double * double * double * int64 * int64 * double * double * double * double -> Microsoft.Azure.Batch.Protocol.Models.ResourceStatistics
Public Sub New (startTime As DateTime, lastUpdateTime As DateTime, avgCPUPercentage As Double, avgMemoryGiB As Double, peakMemoryGiB As Double, avgDiskGiB As Double, peakDiskGiB As Double, diskReadIOps As Long, diskWriteIOps As Long, diskReadGiB As Double, diskWriteGiB As Double, networkReadGiB As Double, networkWriteGiB As Double)

Parameters

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.

avgCPUPercentage
Double

The average CPU usage across all Compute Nodes in the Pool (percentage per node).

avgMemoryGiB
Double

The average memory usage in GiB across all Compute Nodes in the Pool.

peakMemoryGiB
Double

The peak memory usage in GiB across all Compute Nodes in the Pool.

avgDiskGiB
Double

The average used disk space in GiB across all Compute Nodes in the Pool.

peakDiskGiB
Double

The peak used disk space in GiB across all Compute Nodes in the Pool.

diskReadIOps
Int64

The total number of disk read operations across all Compute Nodes in the Pool.

diskWriteIOps
Int64

The total number of disk write operations across all Compute Nodes in the Pool.

diskReadGiB
Double

The total amount of data in GiB of disk reads across all Compute Nodes in the Pool.

diskWriteGiB
Double

The total amount of data in GiB of disk writes across all Compute Nodes in the Pool.

networkReadGiB
Double

The total amount of data in GiB of network reads across all Compute Nodes in the Pool.

networkWriteGiB
Double

The total amount of data in GiB of network writes across all Compute Nodes in the Pool.

Applies to