LogMetricTrigger Constructors

Definition

Overloads

LogMetricTrigger()

Initializes a new instance of the LogMetricTrigger class.

LogMetricTrigger(String, Nullable<Double>, String, String)

Initializes a new instance of the LogMetricTrigger class.

LogMetricTrigger()

Initializes a new instance of the LogMetricTrigger class.

public LogMetricTrigger ();
Public Sub New ()

Applies to

LogMetricTrigger(String, Nullable<Double>, String, String)

Initializes a new instance of the LogMetricTrigger class.

public LogMetricTrigger (string thresholdOperator = default, double? threshold = default, string metricTriggerType = default, string metricColumn = default);
new Microsoft.Azure.Management.Monitor.Models.LogMetricTrigger : string * Nullable<double> * string * string -> Microsoft.Azure.Management.Monitor.Models.LogMetricTrigger
Public Sub New (Optional thresholdOperator As String = Nothing, Optional threshold As Nullable(Of Double) = Nothing, Optional metricTriggerType As String = Nothing, Optional metricColumn As String = Nothing)

Parameters

thresholdOperator
String

Evaluation operation for Metric -'GreaterThan' or 'LessThan' or 'Equal'. Possible values include: 'GreaterThanOrEqual', 'LessThanOrEqual', 'GreaterThan', 'LessThan', 'Equal'

threshold
Nullable<Double>

The threshold of the metric trigger.

metricTriggerType
String

Metric Trigger Type - 'Consecutive' or 'Total'. Possible values include: 'Consecutive', 'Total'

metricColumn
String

Evaluation of metric on a particular column

Applies to