Skip to main content

StatsResponse

Struct StatsResponse 

Source
pub struct StatsResponse {
Show 26 fields pub current_seq: u64, pub checkpoint_seq: u64, pub live_segments: usize, pub retired_segments: usize, pub memtable_cells: usize, pub memtable_versions: usize, pub memtable_payload_bytes: usize, pub estimated_memtable_bytes: usize, pub estimated_index_bytes: usize, pub estimated_context_pack_bytes: usize, pub estimated_total_memory_bytes: usize, pub live_segment_bytes: u64, pub retired_segment_bytes: u64, pub total_segment_bytes: u64, pub durable_storage_bytes: u64, pub live_segment_payload_bytes: u64, pub logical_payload_bytes: u64, pub space_amplification_q16: u32, pub write_amplification_q16: u32, pub compaction_pressure_q16: u32, pub wal_size_bytes: u64, pub wal_writer_records: u64, pub wal_writer_bytes: u64, pub wal_writer_fsyncs: u64, pub wal_writer_batches: u64, pub aql_query_cache: AqlQueryCacheStatsResponse,
}
Expand description

Response metrics containing detailed storage, MemTable, and WAL statistics.

Fields§

§current_seq: u64

The current global database commit sequence.

§checkpoint_seq: u64

The commit sequence of the last successful checkpoint.

§live_segments: usize

The number of active LSM-segments currently being queried.

§retired_segments: usize

The number of garbage-collected or retired segments on disk.

§memtable_cells: usize

Total number of unique knowledge cell IDs in MemTable.

§memtable_versions: usize

Total number of cell versions currently held in MemTable.

§memtable_payload_bytes: usize

Raw payload bytes currently retained by MemTable versions.

§estimated_memtable_bytes: usize

Estimated in-memory bytes used by MemTable structures and payloads.

§estimated_index_bytes: usize

Estimated in-memory bytes used by query/index structures.

§estimated_context_pack_bytes: usize

Estimated bytes needed to materialize a ContextPack working set.

§estimated_total_memory_bytes: usize

Estimated total engine memory across tracked categories.

§live_segment_bytes: u64

Durable bytes held by live segment bundles.

§retired_segment_bytes: u64

Durable bytes held by retired segment bundles waiting for GC.

§total_segment_bytes: u64

Durable bytes held by all segment bundles.

§durable_storage_bytes: u64

Durable segment bytes plus active WAL bytes.

§live_segment_payload_bytes: u64

Payload bytes inside live segment cells.

§logical_payload_bytes: u64

Logical payload proxy used as the denominator for amplification metrics.

§space_amplification_q16: u32

Q16 durable-storage/logical-payload space amplification proxy.

§write_amplification_q16: u32

Q16 local durable-write/logical-payload amplification proxy.

§compaction_pressure_q16: u32

Q16 retired-segment/total-segment compaction pressure.

§wal_size_bytes: u64

Total size of the active Write-Ahead Log (.aclog) files in bytes.

§wal_writer_records: u64

Total number of transaction log records appended.

§wal_writer_bytes: u64

Total bytes appended to the active WAL file.

§wal_writer_fsyncs: u64

Total number of disk fsync flushes executed by the WAL writer.

§wal_writer_batches: u64

Total number of batches committed under group commit.

§aql_query_cache: AqlQueryCacheStatsResponse

AQL query-plan cache size, policy, and hit/miss counters.

Trait Implementations§

Source§

impl Clone for StatsResponse

Source§

fn clone(&self) -> StatsResponse

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 StatsResponse

Source§

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

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

impl<'de> Deserialize<'de> for StatsResponse

Source§

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

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

impl Eq for StatsResponse

Source§

impl PartialEq for StatsResponse

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for StatsResponse

Source§

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

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for StatsResponse

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