nexus-agents - v2.80.0
    Preparing search index...

    Interface ToolInvocationAuditOpts

    Audit exports - Structured audit logging (Issue #193) Split from index.ts for file size compliance (Issue #285)

    interface ToolInvocationAuditOpts {
        toolName: string;
        outcome: "error" | "success" | "failure" | "denied";
        actor: {
            type: "system" | "user" | "external" | "agent";
            id: string;
            name?: string;
            ip?: string;
            userAgent?: string;
        };
        requestId?: string;
        durationMs?: number;
        errorMessage?: string;
        metadata?: Record<string, unknown>;
    }
    Index

    Properties

    toolName: string
    outcome: "error" | "success" | "failure" | "denied"
    actor: {
        type: "system" | "user" | "external" | "agent";
        id: string;
        name?: string;
        ip?: string;
        userAgent?: string;
    }
    requestId?: string
    durationMs?: number
    errorMessage?: string
    metadata?: Record<string, unknown>