OpenTelemetry SDK
    Preparing search index...
    interface LogRecord {
        attributes?: AnyValueMap;
        body?: AnyValue;
        context?: Context;
        eventName?: string;
        exception?: unknown;
        observedTimestamp?: TimeInput;
        severityNumber?: SeverityNumber;
        severityText?: string;
        timestamp?: TimeInput;
    }
    Index

    Properties

    attributes?: AnyValueMap

    Attributes that define the log record.

    body?: AnyValue

    A value containing the body of the log record.

    context?: Context

    The Context associated with the LogRecord.

    eventName?: string

    The unique identifier for the log record.

    exception?: unknown

    An exception (or error) associated with the log record.

    observedTimestamp?: TimeInput

    Time when the event was observed by the collection system.

    severityNumber?: SeverityNumber

    Numerical value of the severity.

    severityText?: string

    The severity text.

    timestamp?: TimeInput

    The time when the log record occurred as UNIX Epoch time in nanoseconds.