@valon-technologies/gestalt
    Preparing search index...

    Interface RuntimeLogAppendInput

    One runtime log entry to append through RuntimeLogHost.append.

    interface RuntimeLogAppendInput {
        sessionId?: string;
        message: string | Uint8Array<ArrayBufferLike>;
        stream?: RuntimeLogStreamName;
        observedAt?: Date;
        sourceSeq?: number | bigint;
    }
    Index

    Properties

    sessionId?: string

    Runtime session id. Defaults to GESTALT_RUNTIME_SESSION_ID.

    message: string | Uint8Array<ArrayBufferLike>

    Log message bytes or text.

    Destination stream. Defaults to runtime.

    observedAt?: Date

    Observation timestamp. Defaults to the current time.

    sourceSeq?: number | bigint

    Monotonic source sequence number. Auto-increments when omitted.