Type alias SpanConfiguration

SpanConfiguration: DynamicMetadata & {
    attributes: Record<string, any>;
    correlationId: string;
    durationMs: number;
    isEnded: boolean;
    service: string;
    spanId: string;
    spanName: string;
    spanParent?: string;
    spanParentId: string;
    startTime: string;
    timestamp: string;
    timestampEpoch: string;
    traceId: string;
}

Description

The configuration shape of a Span. This configuration is what we will manipulate and work on.

Generated using TypeDoc