Show / Hide Table of Contents

Class MetricData

Metric Details

Inheritance
object
MetricData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StackmonitoringService.Models
Assembly: OCI.DotNetSDK.Stackmonitoring.dll
Syntax
public class MetricData

Properties

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public Dictionary<string, string> Dimensions { get; set; }
Property Value
Type Description
Dictionary<string, string>

list of dimensions for the metric

EvaluationDataPoints

Declaration
[Required(ErrorMessage = "EvaluationDataPoints is required.")]
[JsonProperty(PropertyName = "evaluationDataPoints")]
public List<DataPoint> EvaluationDataPoints { get; set; }
Property Value
Type Description
List<DataPoint>

list of data points for the metric for evaluation of anomalies

Remarks

Required

TrainingDataPoints

Declaration
[Required(ErrorMessage = "TrainingDataPoints is required.")]
[JsonProperty(PropertyName = "trainingDataPoints")]
public List<DataPoint> TrainingDataPoints { get; set; }
Property Value
Type Description
List<DataPoint>

list of data points for the metric for training of baseline

Remarks

Required

In this article
Back to top