RunTrace
Namespace AgentPrism · Assembly
AgentPrism.Abstractions.dllA run’s span tree. The waterfall view is built on top of this.
public sealed record RunTrace : IEquatable<RunTrace>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
Section titled “Constructors”RunTrace()
Section titled “ RunTrace()”public RunTrace()Properties
Section titled “Properties”EndedAt
Section titled “ EndedAt”The last span’s end (UTC).
public DateTimeOffset? EndedAt { get; init; }Property Value
Section titled “Property Value”The database identifier.
public required Guid Id { get; init; }Property Value
Section titled “Property Value”The associated run. null for spans without a run.
public Guid? RunId { get; init; }Property Value
Section titled “Property Value”Guid?
The spans, ordered by start time.
public IReadOnlyList<TraceSpan> Spans { get; init; }Property Value
Section titled “Property Value”StartedAt
Section titled “ StartedAt”The first span’s start (UTC).
public required DateTimeOffset StartedAt { get; init; }Property Value
Section titled “Property Value”TenantId
Section titled “ TenantId”The tenant identifier.
public required string TenantId { get; init; }Property Value
Section titled “Property Value”TraceId
Section titled “ TraceId”The W3C trace identifier (32-character hex).
public required string TraceId { get; init; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(RunTrace?)
Section titled “ Equals(RunTrace?)”public bool Equals(RunTrace? other)Parameters
Section titled “Parameters”other RunTrace?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(RunTrace?, RunTrace?)
Section titled “ operator ==(RunTrace?, RunTrace?)”public static bool operator ==(RunTrace? left, RunTrace? right)Parameters
Section titled “Parameters”left RunTrace?
right RunTrace?
Returns
Section titled “Returns”operator !=(RunTrace?, RunTrace?)
Section titled “ operator !=(RunTrace?, RunTrace?)”public static bool operator !=(RunTrace? left, RunTrace? right)Parameters
Section titled “Parameters”left RunTrace?
right RunTrace?