pub struct FuseTelemetry {
pub uptime_seconds: u64,
pub reads_inflight: u64,
pub reads_inflight_max: u64,
pub read_errors: u64,
pub dir_handles: u64,
pub dir_handles_max: u64,
pub pool_workers: u64,
pub pool_active: u64,
pub pool_queued: u64,
pub passthrough: Option<PassthroughTelemetry>,
}Expand description
Fuse-owned telemetry: uptime, the read/dir-handle gates and their caps, the worker pool, and (Linux only) passthrough state.
Fields§
§uptime_seconds: u64§reads_inflight: u64§reads_inflight_max: u64§read_errors: u64§dir_handles: u64§dir_handles_max: u64§pool_workers: u64§pool_active: u64§pool_queued: u64§passthrough: Option<PassthroughTelemetry>Trait Implementations§
Source§impl Clone for FuseTelemetry
impl Clone for FuseTelemetry
Source§fn clone(&self) -> FuseTelemetry
fn clone(&self) -> FuseTelemetry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FuseTelemetry
Source§impl Debug for FuseTelemetry
impl Debug for FuseTelemetry
Source§impl Default for FuseTelemetry
impl Default for FuseTelemetry
Source§fn default() -> FuseTelemetry
fn default() -> FuseTelemetry
Returns the “default value” for a type. Read more
impl Eq for FuseTelemetry
Source§impl PartialEq for FuseTelemetry
impl PartialEq for FuseTelemetry
Source§fn eq(&self, other: &FuseTelemetry) -> bool
fn eq(&self, other: &FuseTelemetry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FuseTelemetry
Auto Trait Implementations§
impl Freeze for FuseTelemetry
impl RefUnwindSafe for FuseTelemetry
impl Send for FuseTelemetry
impl Sync for FuseTelemetry
impl Unpin for FuseTelemetry
impl UnsafeUnpin for FuseTelemetry
impl UnwindSafe for FuseTelemetry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.