Class PerformanceAnomaly
- Namespace
- DotCompute.Abstractions.Debugging
- Assembly
- DotCompute.Abstractions.dll
Represents a performance anomaly detected in the data.
public sealed class PerformanceAnomaly
- Inheritance
-
PerformanceAnomaly
- Inherited Members
Properties
ActualValue
Gets or sets the actual value that was anomalous.
public double ActualValue { get; set; }
Property Value
Description
Gets or sets a description of the anomaly.
public string Description { get; set; }
Property Value
DetectedAt
Gets or sets when the anomaly was detected.
public DateTime DetectedAt { get; set; }
Property Value
Deviation
Gets or sets the deviation from the expected value.
public double Deviation { get; set; }
Property Value
ExpectedValue
Gets or sets the expected value based on historical data.
public double ExpectedValue { get; set; }
Property Value
Metric
Gets or sets the metric that showed anomalous behavior.
public string Metric { get; set; }
Property Value
SessionId
Gets or sets the session ID where the anomaly was detected.
public string SessionId { get; set; }
Property Value
Severity
Gets or sets the severity of the anomaly.
public AnomalySeverity Severity { get; set; }
Property Value
Timestamp
Gets or sets the timestamp when the anomaly occurred.
public DateTime Timestamp { get; set; }
Property Value
Type
Gets or sets the type of anomaly.
public AnomalyType Type { get; set; }