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: usize
The total amount of handles which can be used to access object information.
num_refreshes: usize
The amount of refreshes performed to reconcile with the ODB state on disk.
open_reachable_indices: usize
The amount of indices that are currently open and will be returned to handles.
known_reachable_indices: usize
The amount of reachable, known indices, which aren’t opened yet.
open_reachable_packs: usize
The amount of packs which are open in memory and will be returned to handles.
known_packs: usize
The amount of packs that are reachable and will be returned to handles. They aren’t open yet.
unused_slots: usize
The amount of slots which are empty.
Over time these will fill, but they can be emptied as files are removed from disk.
unreachable_indices: usize
Unreachable 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: usize
Equivalent to unreachable_indices
, but for mapped packed data files
loose_dbs: usize
The amount of loose object databases currently available for object retrieval.
There may be more than one if ‘alternates’ are used.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Metrics
impl<'de> Deserialize<'de> for Metrics
source§fn 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>,
source§impl PartialEq for Metrics
impl PartialEq for Metrics
impl Copy for Metrics
impl Eq for Metrics
impl StructuralPartialEq for Metrics
Auto Trait Implementations§
impl Freeze for Metrics
impl RefUnwindSafe for Metrics
impl Send for Metrics
impl Sync for Metrics
impl Unpin for Metrics
impl UnwindSafe for Metrics
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)