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
Deviation
Gets the deviation from the expected value.
public double Deviation { get; init; }
Property Value
ExpectedValue
Gets the expected value based on historical data.
public double ExpectedValue { get; init; }
Property Value
MetricName
Gets the metric name where the anomaly was detected.
public string MetricName { get; init; }
Property Value
Severity
Gets the severity of the anomaly.
public AnomalySeverity Severity { get; init; }
Property Value
Timestamp
Gets the timestamp when the anomaly occurred.
public DateTime Timestamp { get; init; }
Property Value
Type
Gets the type of anomaly.
public AnomalyType Type { get; init; }
Property Value
Value
Gets the anomalous value.
public double Value { get; init; }