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

    Interface AgentEvent

    Core event emitted by agents for observation.

    interface AgentEvent {
        eventId: string;
        timestamp: string;
        agentId: string;
        eventType: EventType;
        traceId: string;
        spanId: string;
        parentSpanId?: string;
        payload: EventPayload;
        durationMs?: number;
    }
    Index

    Properties

    eventId: string

    Event ID for deduplication

    timestamp: string

    ISO timestamp when event occurred

    agentId: string

    Agent that emitted the event

    eventType: EventType

    Type of event

    traceId: string

    OpenTelemetry trace ID for correlation

    spanId: string

    OpenTelemetry span ID

    parentSpanId?: string

    Parent span ID for hierarchical tracing

    payload: EventPayload

    Event-specific payload

    durationMs?: number

    Duration in milliseconds (for completed events)