@aster-rpc/aster API Reference
    Preparing search index...

    Interface AuditEntry

    Structured audit logging for every RPC call.

    interface AuditEntry {
        timestamp: string;
        service: string;
        method: string;
        callId: string;
        peer: string | undefined;
        status: "started" | "failed" | "completed";
        errorCode?: string;
        errorMessage?: string;
    }
    Index

    Properties

    timestamp: string
    service: string
    method: string
    callId: string
    peer: string | undefined
    status: "started" | "failed" | "completed"
    errorCode?: string
    errorMessage?: string