次の方法で共有


MetricLoadDescription コンストラクター

定義

MetricLoadDescription のコンストラクター。現在の読み込み値と予測される読み込み値のうち少なくとも 1 つを指定する必要があります。 予測メトリック負荷値は現在プレビュー機能です。 予測負荷値を Service Fabric 側で報告して使用することができますが、その機能は現在有効にされていません。

public MetricLoadDescription (string metricName, long? currentLoad = default, long? predictedLoad = default);
new System.Fabric.Description.MetricLoadDescription : string * Nullable<int64> * Nullable<int64> -> System.Fabric.Description.MetricLoadDescription
Public Sub New (metricName As String, Optional currentLoad As Nullable(Of Long) = Nothing, Optional predictedLoad As Nullable(Of Long) = Nothing)

パラメーター

metricName
String

メトリックの名前

currentLoad
Nullable<Int64>

現在の読み込み、 は null にすることができます

predictedLoad
Nullable<Int64>

予測された読み込み、null を指定できます

適用対象