Table of Contents

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

double

Description

Gets or sets a description of the anomaly.

public string Description { get; set; }

Property Value

string

DetectedAt

Gets or sets when the anomaly was detected.

public DateTime DetectedAt { get; set; }

Property Value

DateTime

Deviation

Gets or sets the deviation from the expected value.

public double Deviation { get; set; }

Property Value

double

ExpectedValue

Gets or sets the expected value based on historical data.

public double ExpectedValue { get; set; }

Property Value

double

Metric

Gets or sets the metric that showed anomalous behavior.

public string Metric { get; set; }

Property Value

string

SessionId

Gets or sets the session ID where the anomaly was detected.

public string SessionId { get; set; }

Property Value

string

Severity

Gets or sets the severity of the anomaly.

public AnomalySeverity Severity { get; set; }

Property Value

AnomalySeverity

Timestamp

Gets or sets the timestamp when the anomaly occurred.

public DateTime Timestamp { get; set; }

Property Value

DateTime

Type

Gets or sets the type of anomaly.

public AnomalyType Type { get; set; }

Property Value

AnomalyType