log2trace-ui - v1.0.0-RC1
    Preparing search index...

    Interface FlatSpan

    A single span paired with its rendering metadata.

    Produced by TraceTree.flatten. level is the depth from the root span (root = 0) and is used to indent the span label and bar. serviceName is denormalized from the parent ResourceSpans so that each row can be coloured/labelled without re-walking the tree.

    interface FlatSpan {
        level: number;
        serviceName: string;
        span: Span;
    }
    Index

    Properties

    level: number

    Depth in the parent-child tree; root spans are at level 0.

    serviceName: string

    Service name resolved from the owning ResourceSpans resource attributes.

    span: Span

    The original OTel span.