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.