ClusterHealthPolicy コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ClusterHealthPolicy() |
ClusterHealthPolicy クラスの新しいインスタンスを初期化します。 |
ClusterHealthPolicy(Nullable<Int32>, Nullable<Int32>, IDictionary<String,ApplicationHealthPolicy>) |
ClusterHealthPolicy クラスの新しいインスタンスを初期化します。 |
ClusterHealthPolicy()
ClusterHealthPolicy クラスの新しいインスタンスを初期化します。
public ClusterHealthPolicy ();
Public Sub New ()
適用対象
ClusterHealthPolicy(Nullable<Int32>, Nullable<Int32>, IDictionary<String,ApplicationHealthPolicy>)
ClusterHealthPolicy クラスの新しいインスタンスを初期化します。
public ClusterHealthPolicy (int? maxPercentUnhealthyNodes = default, int? maxPercentUnhealthyApplications = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.ServiceFabric.Models.ApplicationHealthPolicy> applicationHealthPolicies = default);
new Microsoft.Azure.Management.ServiceFabric.Models.ClusterHealthPolicy : Nullable<int> * Nullable<int> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.ServiceFabric.Models.ApplicationHealthPolicy> -> Microsoft.Azure.Management.ServiceFabric.Models.ClusterHealthPolicy
Public Sub New (Optional maxPercentUnhealthyNodes As Nullable(Of Integer) = Nothing, Optional maxPercentUnhealthyApplications As Nullable(Of Integer) = Nothing, Optional applicationHealthPolicies As IDictionary(Of String, ApplicationHealthPolicy) = Nothing)
パラメーター
エラーを報告する前の異常なノードの最大許容パーセンテージ。 たとえば、ノードの 10% の異常を許容するには、この値を 10 にします。
The percentage represents the maximum tolerated percentage of nodes
that can be unhealthy before the cluster is considered in error.
If the percentage is respected but there is at least one unhealthy
node, the health is evaluated as Warning.
The percentage is calculated by dividing the number of unhealthy
nodes over the total number of nodes in the cluster.
The computation rounds up to tolerate one failure on small numbers
of nodes. Default percentage is zero.
In large clusters, some nodes will always be down or out for
repairs, so this percentage should be configured to tolerate that.
エラーを報告する前の異常なアプリケーションの最大許容パーセンテージ。 たとえば、アプリケーションの 10% の異常を許容するには、この値を 10 にします。
The percentage represents the maximum tolerated percentage of
applications that can be unhealthy before the cluster is considered
in error.
If the percentage is respected but there is at least one unhealthy
application, the health is evaluated as Warning.
This is calculated by dividing the number of unhealthy applications
over the total number of application instances in the cluster,
excluding applications of application types that are included in
the ApplicationTypeHealthPolicyMap.
The computation rounds up to tolerate one failure on small numbers
of applications. Default percentage is zero.
- applicationHealthPolicies
- IDictionary<String,ApplicationHealthPolicy>
アプリケーションまたはその子エンティティの正常性を評価するために使用されるアプリケーション正常性ポリシー マップを定義します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET