Skip to content

RunErrorStatistics

Namespace AgentPrism · Assembly AgentPrism.Abstractions.dll

An error class’s summary.

public sealed record RunErrorStatistics : IEquatable<RunErrorStatistics>

objectRunErrorStatistics

IEquatable<RunErrorStatistics>

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

public RunErrorStatistics()

The error class.

public required RunErrorClass Class { get; init; }

RunErrorClass

This class’s most frequent clusters, in descending order of count.

public IReadOnlyList<RunErrorCluster> TopClusters { get; init; }

IReadOnlyList<RunErrorCluster>

The total number of runs falling into this class.

public required long TotalRuns { get; init; }

long

public override bool Equals(object? obj)

obj object?

bool

public bool Equals(RunErrorStatistics? other)

other RunErrorStatistics?

bool

public override int GetHashCode()

int

public override string ToString()

string

operator ==(RunErrorStatistics?, RunErrorStatistics?)

Section titled “ operator ==(RunErrorStatistics?, RunErrorStatistics?)”
public static bool operator ==(RunErrorStatistics? left, RunErrorStatistics? right)

left RunErrorStatistics?

right RunErrorStatistics?

bool

operator !=(RunErrorStatistics?, RunErrorStatistics?)

Section titled “ operator !=(RunErrorStatistics?, RunErrorStatistics?)”
public static bool operator !=(RunErrorStatistics? left, RunErrorStatistics? right)

left RunErrorStatistics?

right RunErrorStatistics?

bool