Skip to main content

OpsEvent

Enum OpsEvent 

Source
#[non_exhaustive]
pub enum OpsEvent {
Show 18 variants SupervisorStateChange { tenant: Option<TenantId>, agent: AgentId, state: String, reason: Option<String>, }, SupervisorStallDetected { tenant: Option<TenantId>, agent: AgentId, missed_heartbeats: u32, }, KillSwitchTripped { tenant: Option<TenantId>, trigger: String, reason: String, }, GovernorDenial { tenant: Option<TenantId>, resource: String, provider: Option<ProviderId>, host: Option<String>, reason: String, }, GovernorFence { tenant: Option<TenantId>, scope: String, reason: Option<String>, }, GovernorBudgetSnapshot { tenant: Option<TenantId>, scope: String, remaining: i64, limit: i64, }, GateDecision { tenant: Option<TenantId>, tool: String, decision: String, gate: String, policy_ref: Option<String>, reason: Option<String>, }, EscalationRaised { tenant: Option<TenantId>, ticket: String, severity: String, reason: String, provenance_root: Option<String>, }, EscalationStateChanged { tenant: Option<TenantId>, ticket: String, from: String, to: String, reason: Option<String>, }, EscalationResolved { tenant: Option<TenantId>, ticket: String, outcome: String, reason: Option<String>, }, WorkPlanned { tenant: Option<TenantId>, work_id: String, title: String, depends_on: Vec<String>, }, WorkDependencyAdded { tenant: Option<TenantId>, child: String, on: String, }, WorkDispatched { tenant: Option<TenantId>, work_id: String, }, WorkTransition { tenant: Option<TenantId>, work_id: String, from: String, to: String, reason: Option<String>, }, HandoffPackaged { tenant: Option<TenantId>, from_run: String, merkle_root: String, }, HandoffDelivered { tenant: Option<TenantId>, from_run: String, to_agent: String, }, HandoffVerified { tenant: Option<TenantId>, from_run: String, }, HandoffVerificationFailed { tenant: Option<TenantId>, from_run: Option<String>, reason: String, },
}
Expand description

Operational-layer event. Carried inside Episode::Ops(serde_json::Value).

The tenant field is part of the canonical signed payload — chain signatures cover it, so a tampered tenant tag invalidates the chain.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

SupervisorStateChange

Supervisor lifecycle event.

Fields

§tenant: Option<TenantId>

Tenant tag for run-scope consistency.

§agent: AgentId

Affected agent.

§state: String

New state.

§reason: Option<String>

Optional human-readable reason.

§

SupervisorStallDetected

Supervisor detected a stalled agent.

Fields

§tenant: Option<TenantId>

Tenant tag.

§agent: AgentId

Stalled agent.

§missed_heartbeats: u32

Missed heartbeat count.

§

KillSwitchTripped

Kill-switch tripped.

Fields

§tenant: Option<TenantId>

Tenant tag.

§trigger: String

Trigger source (programmatic / external / audit).

§reason: String

Reason recorded with the trip.

§

GovernorDenial

Governor denied an LLM or egress acquire.

Fields

§tenant: Option<TenantId>

Tenant tag.

§resource: String

Resource kind: currently "llm" or "egress". Stringly-typed in v0.2 because the field name was forced by the serde tag collision (see ADR-008). A typed enum may replace this in v0.3.

§provider: Option<ProviderId>

Provider id (LLM only).

§host: Option<String>

Host (egress only).

§reason: String

Reason.

§

GovernorFence

Governor fenced a scope.

Fields

§tenant: Option<TenantId>

Tenant tag.

§scope: String

Scope description (formatted).

§reason: Option<String>

Optional reason.

§

GovernorBudgetSnapshot

Periodic budget snapshot.

Fields

§tenant: Option<TenantId>

Tenant tag.

§scope: String

Scope description.

§remaining: i64

Remaining budget.

§limit: i64

Limit.

§

GateDecision

Gate evaluated a tool invocation.

Fields

§tenant: Option<TenantId>

Tenant tag.

§tool: String

Tool name.

§decision: String

allow / deny / require_approval.

§gate: String

Gate name that produced the decision.

§policy_ref: Option<String>

Optional policy reference (e.g. cedar bundle sha).

§reason: Option<String>

Optional reason text.

§

EscalationRaised

New escalation ticket raised.

Fields

§tenant: Option<TenantId>

Tenant tag for run-scope consistency.

§ticket: String

Stable ticket identifier (klieo-ops generated).

§severity: String

Severity at time of raise.

§reason: String

Free-form reason text (already redacted via global Redactor).

§provenance_root: Option<String>

Optional Merkle root of the provenance bundle attached to the ticket.

§

EscalationStateChanged

Escalation state transition (e.g. raised → acknowledged, acknowledged → resolved, or requeued + escalated to a higher severity).

Fields

§tenant: Option<TenantId>

Tenant tag.

§ticket: String

Ticket identifier.

§from: String

From-state label.

§to: String

To-state label.

§reason: Option<String>

Optional reason / annotation.

§

EscalationResolved

Escalation resolved with a terminal outcome (Resolved / AutoDenied / TimedOut / Halted).

Fields

§tenant: Option<TenantId>

Tenant tag.

§ticket: String

Ticket identifier.

§outcome: String

Terminal outcome label (e.g. “resolved”, “auto_denied”, “timed_out”, “halted”).

§reason: Option<String>

Optional resolution reason text.

§

WorkPlanned

Work item planned (entered the DAG).

Fields

§tenant: Option<TenantId>

Tenant tag.

§work_id: String

Work identifier.

§title: String

Item title or short label.

§depends_on: Vec<String>

Optional list of work_ids this item depends on (declared at plan time).

§

WorkDependencyAdded

Dependency relationship added between two existing work items.

Fields

§tenant: Option<TenantId>

Tenant tag.

§child: String

Child work id.

§on: String

Dependency parent work id.

§

WorkDispatched

Work item dispatched (enqueued onto the JobQueue for execution).

Fields

§tenant: Option<TenantId>

Tenant tag.

§work_id: String

Work identifier.

§

WorkTransition

Work item state transition.

Fields

§tenant: Option<TenantId>

Tenant tag.

§work_id: String

Work identifier.

§from: String

From-state label.

§to: String

To-state label.

§reason: Option<String>

Optional reason / annotation.

§

HandoffPackaged

Handoff envelope packaged and signed.

Fields

§tenant: Option<TenantId>

Tenant tag.

§from_run: String

Source run id.

§merkle_root: String

Hex-encoded Merkle root.

§

HandoffDelivered

Handoff envelope delivered to a receiver agent.

Fields

§tenant: Option<TenantId>

Tenant tag.

§from_run: String

Source run id.

§to_agent: String

Receiver agent identifier.

§

HandoffVerified

Handoff verification succeeded.

Fields

§tenant: Option<TenantId>

Tenant tag.

§from_run: String

Source run id.

§

HandoffVerificationFailed

Handoff verification failed (bad sig, expired, prefix proof invalid, or redaction schema fail).

Fields

§tenant: Option<TenantId>

Tenant tag.

§from_run: Option<String>

Source run id (if extractable from the envelope).

§reason: String

Free-form reason.

Implementations§

Source§

impl OpsEvent

Source

pub fn into_episode_payload(self) -> Result<Value, Error>

Convert to the opaque serde_json::Value shape consumed by Episode::Ops. Returns an error only if serde_json cannot serialise the value — practically impossible for this type, but must not panic in production code paths.

Source

pub fn from_episode_payload(v: &Value) -> Option<Self>

Round-trip from an opaque Episode::Ops payload. Returns None if the payload doesn’t match the known shape.

Trait Implementations§

Source§

impl Clone for OpsEvent

Source§

fn clone(&self) -> OpsEvent

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for OpsEvent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for OpsEvent

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for OpsEvent

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more