Table of Contents

Class MetricAnomaly

Namespace
DotCompute.Abstractions.Debugging
Assembly
DotCompute.Abstractions.dll

Represents a detected anomaly in metrics data.

public sealed class MetricAnomaly
Inheritance
MetricAnomaly
Inherited Members

Properties

Description

Gets a description of the anomaly.

public string Description { get; init; }

Property Value

string

Deviation

Gets the deviation from the expected value.

public double Deviation { get; init; }

Property Value

double

ExpectedValue

Gets the expected value based on historical data.

public double ExpectedValue { get; init; }

Property Value

double

MetricName

Gets the metric name where the anomaly was detected.

public string MetricName { get; init; }

Property Value

string

Severity

Gets the severity of the anomaly.

public AnomalySeverity Severity { get; init; }

Property Value

AnomalySeverity

Timestamp

Gets the timestamp when the anomaly occurred.

public DateTime Timestamp { get; init; }

Property Value

DateTime

Type

Gets the type of anomaly.

public AnomalyType Type { get; init; }

Property Value

AnomalyType

Value

Gets the anomalous value.

public double Value { get; init; }

Property Value

double