Skip to main content

WasmObservabilityPlugin

Struct WasmObservabilityPlugin 

Source
pub struct WasmObservabilityPlugin { /* private fields */ }
Expand description

Wrapper to use a WASM plugin as an ObservabilityExtension

Implementations§

Source§

impl WasmObservabilityPlugin

Source

pub fn new(instance: Arc<WasmPluginInstance>) -> Self

Create a new wrapper from a WASM instance

Trait Implementations§

Source§

impl Extension for WasmObservabilityPlugin

Source§

fn info(&self) -> ExtensionInfo

Get extension information
Source§

fn as_any(&self) -> &dyn Any

Cast to Any for downcasting
Source§

fn as_any_mut(&mut self) -> &mut dyn Any

Cast to mutable Any for downcasting
Source§

fn init(&mut self) -> KernelResult<()>

Initialize the extension
Source§

fn shutdown(&mut self) -> KernelResult<()>

Shutdown the extension gracefully
Source§

impl ObservabilityExtension for WasmObservabilityPlugin

Source§

fn counter_inc(&self, name: &str, value: u64, labels: &[(&str, &str)])

Record a counter increment
Source§

fn gauge_set(&self, name: &str, value: f64, labels: &[(&str, &str)])

Record a gauge value
Source§

fn histogram_observe(&self, name: &str, value: f64, labels: &[(&str, &str)])

Record a histogram observation
Source§

fn span_start(&self, name: &str, parent: Option<u64>) -> u64

Start a new span
Source§

fn span_end(&self, span_id: u64)

End a span
Source§

fn span_event(&self, span_id: u64, name: &str, _attributes: &[(&str, &str)])

Add an event to a span
Source§

fn log_debug(&self, message: &str, fields: &[(&str, &str)])

Log at debug level
Source§

fn log_info(&self, message: &str, fields: &[(&str, &str)])

Log at info level
Source§

fn log_warn(&self, message: &str, fields: &[(&str, &str)])

Log at warn level
Source§

fn log_error(&self, message: &str, fields: &[(&str, &str)])

Log at error level
Source§

fn report_health(&self, health: &HealthInfo)

Report health status (called periodically by kernel)

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