Share via


MultiMetricCriteria Class

Definition

The types of conditions for a multi resource alert. Please note MultiMetricCriteria is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include DynamicMetricCriteria and MetricCriteria.

public class MultiMetricCriteria : System.ClientModel.Primitives.IJsonModel<Azure.ResourceManager.Monitor.Models.MultiMetricCriteria>, System.ClientModel.Primitives.IPersistableModel<Azure.ResourceManager.Monitor.Models.MultiMetricCriteria>
public class MultiMetricCriteria
type MultiMetricCriteria = class
    interface IJsonModel<MultiMetricCriteria>
    interface IPersistableModel<MultiMetricCriteria>
type MultiMetricCriteria = class
Public Class MultiMetricCriteria
Implements IJsonModel(Of MultiMetricCriteria), IPersistableModel(Of MultiMetricCriteria)
Public Class MultiMetricCriteria
Inheritance
MultiMetricCriteria
Derived
Implements

Constructors

MultiMetricCriteria(String, String, MetricCriteriaTimeAggregationType)

Initializes a new instance of MultiMetricCriteria.

Properties

AdditionalProperties

Additional Properties

To assign an object to the value of this property use FromObjectAsJson<T>(T, JsonSerializerOptions).

To assign an already formatted json string to this property use FromString(String).

Examples:

  • BinaryData.FromObjectAsJson("foo"): Creates a payload of "foo".
  • BinaryData.FromString("\"foo\""): Creates a payload of "foo".
  • BinaryData.FromObjectAsJson(new { key = "value" }): Creates a payload of { "key": "value" }.
  • BinaryData.FromString("{\"key\": \"value\"}"): Creates a payload of { "key": "value" }.
Dimensions

List of dimension conditions.

MetricName

Name of the metric.

MetricNamespace

Namespace of the metric.

Name

Name of the criteria.

SkipMetricValidation

Allows creating an alert rule on a custom metric that isn't yet emitted, by causing the metric validation to be skipped.

TimeAggregation

the criteria time aggregation types.

Explicit Interface Implementations

IJsonModel<MultiMetricCriteria>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<MultiMetricCriteria>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<MultiMetricCriteria>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<MultiMetricCriteria>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<MultiMetricCriteria>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to