pub enum EventKind {
Show 37 variants
Audit,
RecallExecuted,
RerankExecuted,
SearchExecuted,
LinkCreated,
EntityCreated,
EntityUpdated,
EntityDeleted,
EntityMerged,
NoteCreated,
NoteUpdated,
NoteDeleted,
EdgeUpdated,
EdgeDeleted,
TaskTransitioned,
FeedbackExplicit,
ProfileResolutionRecommended,
ProfileMerged,
EmbeddingModelChanged,
EmbeddingMigrationCompleted,
EmbeddingMigrationFailed,
EmbeddingDriftDetected,
ProposalCreated,
ProposalReviewed,
ProposalApplied,
ProposalWithdrawn,
ChannelPollStarted,
ChannelPollSucceeded,
ChannelPollFailed,
ChannelBackoffArmed,
ChannelBackoffReset,
ChannelHeartbeatPersistFailed,
ConfigLocked,
CheckpointOutcomeRecorded,
PhaseStarted,
PhaseCompleted,
PhaseCancelled,
}Expand description
Discriminant for the 37 typed event variants produced by the verb dispatch path and by lifecycle telemetry producers (channel polling/backoff, config-lock, checkpoint outcome, background phase spans).
Variants§
Audit
Generic audit event with no structured payload.
RecallExecuted
A recall verb was executed and results were returned.
RerankExecuted
A rerank pass was applied to search candidates.
SearchExecuted
A search verb was executed.
LinkCreated
A new directed edge was created between two nodes.
EntityCreated
A new entity was created.
EntityUpdated
An existing entity was patched.
EntityDeleted
An entity was soft- or hard-deleted.
EntityMerged
Two entities were merged (deduplication).
NoteCreated
A new note was created.
NoteUpdated
An existing note was patched.
NoteDeleted
A note was soft- or hard-deleted.
EdgeUpdated
An edge’s relation or weight was updated.
EdgeDeleted
An edge was removed.
TaskTransitioned
A GTD task moved between lifecycle states.
FeedbackExplicit
An explicit user feedback signal was recorded.
ProfileResolutionRecommended
The brain recommended a profile resolution update.
ProfileMerged
Two brain profiles were merged.
EmbeddingModelChanged
The active embedding model was changed.
EmbeddingMigrationCompleted
An embedding migration batch completed successfully.
EmbeddingMigrationFailed
An embedding migration batch failed.
EmbeddingDriftDetected
Drift was detected between stored and live embeddings.
ProposalCreated
A proposal was submitted for review.
ProposalReviewed
A reviewer accepted, rejected, or commented on a proposal.
ProposalApplied
A proposal was applied to the graph.
ProposalWithdrawn
A proposal was withdrawn before it was applied.
ChannelPollStarted
A channel poll cycle started for one (kind, slug) credential.
ChannelPollSucceeded
A channel poll cycle returned envelopes after a prior failure.
ChannelPollFailed
A channel poll cycle failed.
ChannelBackoffArmed
A channel’s backoff escalated to a new step after a failure.
ChannelBackoffReset
A channel’s backoff reset to base after a success.
ChannelHeartbeatPersistFailed
Persisting a channel heartbeat row failed.
ConfigLocked
A process-lifetime OnceLock configuration value was locked in.
CheckpointOutcomeRecorded
A WAL checkpoint tick’s outcome was recorded (ADR-091 elevated/drain edge).
PhaseStarted
A background phase (ANN warm, index rebuild/backfill, …) started (ADR-103 Stage 1).
PhaseCompleted
A background phase completed (ADR-103 Stage 1).
PhaseCancelled
A background phase was cancelled before completion (ADR-103 Stage 1).