Show / Hide Table of Contents

Class AnomalyDataPoint

anomaly evaluation result fo the data point

Inheritance
object
AnomalyDataPoint
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 AnomalyDataPoint

Properties

Anomaly

Declaration
[Required(ErrorMessage = "Anomaly is required.")]
[JsonProperty(PropertyName = "anomaly")]
public double Anomaly { get; set; }
Property Value
Type Description
double

if the value is anomaly or not 0 indicates not an anomaly -1 indicates value is below the threshold +1 indicates value is above the threshold

Remarks

Required

High

Declaration
[JsonProperty(PropertyName = "high")]
public double High { get; set; }
Property Value
Type Description
double

upper threshold for the metric value

Low

Declaration
[JsonProperty(PropertyName = "low")]
public double Low { get; set; }
Property Value
Type Description
double

lower threshold for the metric value

Timestamp

Declaration
[Required(ErrorMessage = "Timestamp is required.")]
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type Description
DateTime?

timestamp of when the metric was collected

Remarks

Required

Value

Declaration
[Required(ErrorMessage = "Value is required.")]
[JsonProperty(PropertyName = "value")]
public double Value { get; set; }
Property Value
Type Description
double

value for the metric data point

Remarks

Required

In this article
Back to top