Skip to main content

MetricsCollector

Struct MetricsCollector 

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

Metrics collector for the simulator.

Provides comprehensive metrics collection including:

  • Request/response counters and timings
  • Device and connection tracking
  • System resource monitoring (CPU, memory)
  • Protocol-specific metrics

Implementations§

Source§

impl MetricsCollector

Source

pub fn new() -> MetricsCollector

Create a new metrics collector with a fresh registry.

Source

pub fn global() -> &'static MetricsCollector

Get the global metrics collector instance.

This returns a shared instance that uses the global registry. Use this when you want all metrics to be collected in one place.

Source

pub fn with_registry(registry: Registry) -> MetricsCollector

Create a metrics collector with a custom registry.

Source

pub fn registry(&self) -> &Registry

Get the Prometheus registry.

Source

pub fn record_request(&self, protocol: &str, operation: &str)

Record a request by protocol and operation.

This is the primary method for tracking request counts and should be used in conjunction with record_request_duration or time_request.

Source

pub fn record_request_duration( &self, protocol: &str, operation: &str, duration: Duration, )

Record a request duration.

Source

pub fn time_request(&self, protocol: &str, operation: &str) -> RequestTimer

Create a request timer for automatic duration recording.

The timer automatically records the duration when dropped.

§Example
let _timer = metrics.time_request("modbus", "read");
// ... do work ...
// duration is automatically recorded when _timer goes out of scope
Source

pub fn record_message(&self, protocol: &str, direction: &str)

Record a message (for protocol-level message tracking).

Source

pub fn record_read(&self, protocol: &str, success: bool, duration: Duration)

Record a read operation with timing and status.

Source

pub fn record_write(&self, protocol: &str, success: bool, duration: Duration)

Record a write operation with timing and status.

Source

pub fn record_error(&self, protocol: &str, error_type: &str)

Record an error by protocol and error type.

Source

pub fn record_tick(&self, duration: Duration)

Record an engine tick with duration.

Source

pub fn record_latency(&self, protocol: &str, latency: Duration)

Record message latency.

Source

pub fn record_event(&self, event_type: &str)

Record an event by type.

Source

pub fn set_devices_active(&self, count: i64)

Set the number of active devices.

Source

pub fn set_connections_active(&self, protocol: &str, count: i64)

Set active connections for a protocol.

Source

pub fn inc_connections(&self, protocol: &str)

Increment active connections for a protocol.

Source

pub fn dec_connections(&self, protocol: &str)

Decrement active connections for a protocol.

Source

pub fn set_points_total(&self, count: i64)

Set total data points.

Source

pub fn set_device_points(&self, protocol: &str, device_id: &str, count: i64)

Set data points for a specific device.

Source

pub fn remove_device_points(&self, protocol: &str, device_id: &str)

Remove device points metrics (when device is removed).

Source

pub fn set_memory_bytes(&self, bytes: i64)

Set memory usage in bytes.

Source

pub fn set_cpu_percent(&self, percent: f64)

Set CPU usage percentage (0-100).

Source

pub fn update_system_metrics(&self, memory_bytes: i64, cpu_percent: f64)

Update system metrics (memory and CPU).

This is a convenience method that updates both memory and CPU metrics.

Source

pub fn uptime(&self) -> Duration

Get uptime since the metrics collector was created.

Source

pub fn tick_rate(&self) -> f64

Get the current tick rate (ticks per second).

Source

pub fn snapshot(&self) -> MetricsSnapshot

Get a snapshot of current metrics.

Source

pub fn detailed_snapshot(&self) -> DetailedMetricsSnapshot

Get a detailed snapshot with additional information.

Source

pub fn export_prometheus(&self) -> String

Export metrics in Prometheus text format.

Source

pub fn export_global_prometheus() -> String

Export metrics from the global registry.

Trait Implementations§

Source§

impl Clone for MetricsCollector

Source§

fn clone(&self) -> MetricsCollector

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Default for MetricsCollector

Source§

fn default() -> MetricsCollector

Returns the “default value” for a type. 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<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> 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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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