Bagikan melalui


EventsCustomMetricInfo Constructors

Definition

Overloads

EventsCustomMetricInfo()

Initializes a new instance of the EventsCustomMetricInfo class.

EventsCustomMetricInfo(String, Nullable<Double>, Nullable<Double>, Nullable<Int32>, Nullable<Double>, Nullable<Double>, Nullable<Double>)

Initializes a new instance of the EventsCustomMetricInfo class.

EventsCustomMetricInfo()

Source:
EventsCustomMetricInfo.cs

Initializes a new instance of the EventsCustomMetricInfo class.

public EventsCustomMetricInfo ();
Public Sub New ()

Applies to

EventsCustomMetricInfo(String, Nullable<Double>, Nullable<Double>, Nullable<Int32>, Nullable<Double>, Nullable<Double>, Nullable<Double>)

Source:
EventsCustomMetricInfo.cs

Initializes a new instance of the EventsCustomMetricInfo class.

public EventsCustomMetricInfo (string name = default, double? value = default, double? valueSum = default, int? valueCount = default, double? valueMin = default, double? valueMax = default, double? valueStdDev = default);
new Microsoft.Azure.ApplicationInsights.Query.Models.EventsCustomMetricInfo : string * Nullable<double> * Nullable<double> * Nullable<int> * Nullable<double> * Nullable<double> * Nullable<double> -> Microsoft.Azure.ApplicationInsights.Query.Models.EventsCustomMetricInfo
Public Sub New (Optional name As String = Nothing, Optional value As Nullable(Of Double) = Nothing, Optional valueSum As Nullable(Of Double) = Nothing, Optional valueCount As Nullable(Of Integer) = Nothing, Optional valueMin As Nullable(Of Double) = Nothing, Optional valueMax As Nullable(Of Double) = Nothing, Optional valueStdDev As Nullable(Of Double) = Nothing)

Parameters

name
String

The name of the custom metric

value
Nullable<Double>

The value of the custom metric

valueSum
Nullable<Double>

The sum of the custom metric

valueCount
Nullable<Int32>

The count of the custom metric

valueMin
Nullable<Double>

The minimum value of the custom metric

valueMax
Nullable<Double>

The maximum value of the custom metric

valueStdDev
Nullable<Double>

The standard deviation of the custom metric

Applies to