Anchorage API reference
    Preparing search index...

    Structured, redacted diagnostic fields for AgentCliError.

    interface AgentCliErrorMetadata {
        code: AgentCliErrorCode;
        command?: string;
        connectorId?: string;
        exitCode?: number;
        stderrCaptured?: boolean;
        stdoutCaptured?: boolean;
        systemCode?: string;
        timeoutMs?: number;
    }
    Index

    Properties

    Stable error category.

    command?: string

    Redacted display command.

    connectorId?: string

    Connector that failed.

    exitCode?: number

    Nonzero process exit code, when a process completed unsuccessfully.

    stderrCaptured?: boolean

    Whether any standard error was captured. Contents are never included.

    stdoutCaptured?: boolean

    Whether any standard output was captured. Contents are never included.

    systemCode?: string

    Platform process error code, such as ENOENT, when safely available.

    timeoutMs?: number

    Configured process timeout, when the failure was timeout-related.