Beignet API reference
    Preparing search index...

    Interface TraceOperation

    Description of one operation to run inside an active trace span.

    interface TraceOperation {
        attributes?: Readonly<Record<string, TraceAttributeValue>>;
        kind?: TraceSpanKind;
        metricAttributes?: Readonly<Record<string, TraceAttributeValue>>;
        name: string;
        parent?: TraceContextInput;
        type: TraceOperationType;
    }
    Index
    attributes?: Readonly<Record<string, TraceAttributeValue>>

    Attributes attached to the operation span.

    metricAttributes?: Readonly<Record<string, TraceAttributeValue>>

    Bounded attributes attached to operation metrics. Values must describe a stable operation dimension, never a request, actor, tenant, or payload.

    name: string