DynamicThresholdFailingPeriods Constructors

Definition

Overloads

DynamicThresholdFailingPeriods()

Initializes a new instance of the DynamicThresholdFailingPeriods class.

DynamicThresholdFailingPeriods(Double, Double)

Initializes a new instance of the DynamicThresholdFailingPeriods class.

DynamicThresholdFailingPeriods()

Initializes a new instance of the DynamicThresholdFailingPeriods class.

public DynamicThresholdFailingPeriods ();
Public Sub New ()

Applies to

DynamicThresholdFailingPeriods(Double, Double)

Initializes a new instance of the DynamicThresholdFailingPeriods class.

public DynamicThresholdFailingPeriods (double numberOfEvaluationPeriods, double minFailingPeriodsToAlert);
new Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods : double * double -> Microsoft.Azure.Management.Monitor.Models.DynamicThresholdFailingPeriods
Public Sub New (numberOfEvaluationPeriods As Double, minFailingPeriodsToAlert As Double)

Parameters

numberOfEvaluationPeriods
Double

The number of aggregated lookback points. The lookback time window is calculated based on the aggregation granularity (windowSize) and the selected number of aggregated points.

minFailingPeriodsToAlert
Double

The number of violations to trigger an alert. Should be smaller or equal to numberOfEvaluationPeriods.

Applies to