@runloop/api-client - v1.18.1
    Preparing search index...
    interface Log {
        level: string;
        source:
            | "setup_commands"
            | "entrypoint"
            | "exec"
            | "files"
            | "stats"
            | "kmsg";
        timestamp_ms: number;
        cmd?: string
        | null;
        cmd_id?: string | null;
        exit_code?: number | null;
        message?: string | null;
        shell_name?: string | null;
    }
    Index

    Properties

    level: string

    Log line severity level.

    source: "setup_commands" | "entrypoint" | "exec" | "files" | "stats" | "kmsg"

    The source of the log.

    timestamp_ms: number

    Time of log (Unix timestamp milliseconds).

    cmd?: string | null

    The Command Executed

    cmd_id?: string | null

    Identifier of the associated command the log is sourced from.

    exit_code?: number | null

    The Exit Code of the command

    message?: string | null

    Log line message.

    shell_name?: string | null

    The Shell name the cmd executed in.