OpenTelemetry SDK
    Preparing search index...

    Interface ReadableLogRecord

    interface ReadableLogRecord {
        attributes: AnyValueMap;
        body?: AnyValue;
        droppedAttributesCount: number;
        eventName?: string;
        hrTime: HrTime;
        hrTimeObserved: HrTime;
        instrumentationScope: core.InstrumentationScope & {
            attributes?: AnyValueMap;
            droppedAttributesCount?: number;
        };
        resource: resources.Resource;
        severityNumber?: SeverityNumber;
        severityText?: string;
        spanContext?: SpanContext;
    }
    Index

    Properties

    attributes: AnyValueMap
    body?: AnyValue
    droppedAttributesCount: number
    eventName?: string
    hrTime: HrTime
    hrTimeObserved: HrTime
    instrumentationScope: core.InstrumentationScope & {
        attributes?: AnyValueMap;
        droppedAttributesCount?: number;
    }

    The instrumentation scope associated with this log record. Identity of this object MUST be stable across identical scopes, as it is intended be used for efficient scope-based filtering and grouping.

    severityNumber?: SeverityNumber
    severityText?: string
    spanContext?: SpanContext