Skip to main content

DiagnosticEvent

Enum DiagnosticEvent 

Source
pub enum DiagnosticEvent {
Show 16 variants AppStarted { module_count: usize, }, AppReady, LifecycleStarted { instance: String, generation: u64, phase: ModuleLifecyclePhase, }, LifecycleCompleted { instance: String, generation: u64, phase: ModuleLifecyclePhase, outcome: DiagnosticOutcome, elapsed: Duration, }, InvocationStarted { request_id: u64, caller_instance: Option<String>, provider_instance: Option<String>, capability: &'static str, operation: Option<&'static str>, }, InvocationCompleted { request_id: u64, caller_instance: Option<String>, provider_instance: Option<String>, capability: &'static str, operation: Option<&'static str>, outcome: DiagnosticOutcome, elapsed: Duration, }, AdmissionRejected { request_id: u64, caller_instance: Option<String>, provider_instance: Option<String>, capability: &'static str, operation: Option<&'static str>, outcome: DiagnosticAdmission, }, EventAdmission { request_id: u64, publisher_instance: String, subscriber_instance: String, capability: &'static str, operation: Option<&'static str>, outcome: DiagnosticAdmission, }, GenerationUnavailable { instance: String, generation: u64, }, GenerationReady { instance: String, generation: u64, }, RestartScheduled { instance: String, attempt: usize, delay: Duration, }, RestartExhausted { instance: String, attempts: usize, terminal: bool, }, RuntimeFailure { instance: Option<String>, kind: RuntimeFailureKind, }, ShutdownAdmissionClosed, ShutdownCleanupStarted { timeout: Duration, }, ShutdownCompleted { outcome: DiagnosticShutdownOutcome, elapsed: Duration, },
}
Expand description

Structural, lossy metadata emitted by the Kernel.

This enum intentionally has no payload, configuration, secret, opaque extension, ActorAssertion, or Domain Error fields. Delivery of these records is not itself observed, so exporting a record cannot recurse into the diagnostic feed. Caller identities are present only when they resolve to a Module Instance in the immutable App Plan.

Variants§

§

AppStarted

The Kernel created a running App runtime.

Fields

§module_count: usize
§

AppReady

Every selected Module generation has activated and App admission opened.

§

LifecycleStarted

A Module lifecycle phase began.

Fields

§instance: String
§generation: u64
§

LifecycleCompleted

A Module lifecycle phase completed with a sanitized outcome and duration.

Fields

§instance: String
§generation: u64
§elapsed: Duration
§

InvocationStarted

A typed request or stream operation began.

Fields

§request_id: u64
§caller_instance: Option<String>
§provider_instance: Option<String>
§capability: &'static str
§operation: Option<&'static str>
§

InvocationCompleted

A typed request or stream operation completed.

Fields

§request_id: u64
§caller_instance: Option<String>
§provider_instance: Option<String>
§capability: &'static str
§operation: Option<&'static str>
§elapsed: Duration
§

AdmissionRejected

Bounded request admission rejected an operation.

Fields

§request_id: u64
§caller_instance: Option<String>
§provider_instance: Option<String>
§capability: &'static str
§operation: Option<&'static str>
§

EventAdmission

One Event subscriber received an independent admission outcome.

Fields

§request_id: u64
§publisher_instance: String
§subscriber_instance: String
§capability: &'static str
§operation: Option<&'static str>
§

GenerationUnavailable

A provider generation became unavailable.

Fields

§instance: String
§generation: u64
§

GenerationReady

A replacement provider generation became ready.

Fields

§instance: String
§generation: u64
§

RestartScheduled

Supervision scheduled one bounded restart attempt.

Fields

§instance: String
§attempt: usize
§delay: Duration
§

RestartExhausted

Supervision exhausted its finite restart budget.

Fields

§instance: String
§attempts: usize
§terminal: bool
§

RuntimeFailure

A Runtime Failure category was observed without its detail or payload.

Fields

§instance: Option<String>
§

ShutdownAdmissionClosed

App admission closed and cooperative cancellation began.

§

ShutdownCleanupStarted

App cleanup began with one global timeout.

Fields

§timeout: Duration
§

ShutdownCompleted

App cleanup completed with a sanitized outcome and duration.

Trait Implementations§

Source§

impl Clone for DiagnosticEvent

Source§

fn clone(&self) -> DiagnosticEvent

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 DiagnosticEvent

Source§

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

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

impl Eq for DiagnosticEvent

Source§

impl PartialEq for DiagnosticEvent

Source§

fn eq(&self, other: &DiagnosticEvent) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for DiagnosticEvent

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<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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> 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.