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

    Interface LogRecord

    A log record represents a single log event

    interface LogRecord {
        attributes: KeyValue[];
        body?: AnyValue;
        droppedAttributesCount?: number;
        eventName?: string;
        flags?: number;
        observedTimeUnixNano: string;
        severityNumber: SeverityNumber;
        severityText?: string;
        spanId?: string;
        timeUnixNano: string;
        traceId?: string;
    }
    Index

    Properties

    attributes: KeyValue[]

    Additional attributes that describe the specific event occurrence

    body?: AnyValue

    The body of the log record (can be string, number, boolean, or structured data)

    droppedAttributesCount?: number

    Number of dropped attributes

    eventName?: string

    A unique identifier of event category/type

    flags?: number

    Flags, a bit field (8 least significant bits are trace flags)

    observedTimeUnixNano: string

    Time when the event was observed by the collection system (UNIX Epoch time in nanoseconds)

    severityNumber: SeverityNumber

    Numerical value of the severity

    severityText?: string

    The severity text (also known as log level)

    spanId?: string

    Span ID (8-byte array represented as hex string)

    timeUnixNano: string

    Time when the event occurred (UNIX Epoch time in nanoseconds)

    traceId?: string

    Trace ID (16-byte array represented as hex string)