pub struct Metrics {
pub num_handles: usize,
pub num_refreshes: usize,
pub open_reachable_indices: usize,
pub known_reachable_indices: usize,
pub open_reachable_packs: usize,
pub known_packs: usize,
pub unused_slots: usize,
pub unreachable_indices: usize,
pub unreachable_packs: usize,
pub loose_dbs: usize,
}Expand description
A snapshot about resource usage.
Fields
num_handles: usizeThe total amount of handles which can be used to access object information.
num_refreshes: usizeThe amount of refreshes performed to reconcile with the ODB state on disk.
open_reachable_indices: usizeThe amount of indices that are currently open and will be returned to handles.
known_reachable_indices: usizeThe amount of reachable, known indices, which aren’t opened yet.
open_reachable_packs: usizeThe amount of packs which are open in memory and will be returned to handles.
known_packs: usizeThe amount of packs that are reachable and will be returned to handles. They aren’t open yet.
unused_slots: usizeThe amount of slots which are empty.
Over time these will fill, but they can be emptied as files are removed from disk.
unreachable_indices: usizeUnreachable indices are still using slots, but aren’t returned to new handles anymore unless they still happen to know their id.
This allows to keep files available while they are still potentially required for operations like pack generation, despite the file on disk being removed or changed.
unreachable_packs: usizeEquivalent to unreachable_indices, but for mapped packed data files
loose_dbs: usizeThe amount of loose object databases currently available for object retrieval.
There may be more than one if ‘alternates’ are used.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Metrics
impl<'de> Deserialize<'de> for Metrics
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<Metrics> for Metrics
impl PartialEq<Metrics> for Metrics
impl Copy for Metrics
impl Eq for Metrics
impl StructuralEq for Metrics
impl StructuralPartialEq for Metrics
Auto Trait Implementations
impl RefUnwindSafe for Metrics
impl Send for Metrics
impl Sync for Metrics
impl Unpin for Metrics
impl UnwindSafe for Metrics
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more