pub struct IndexingMetrics {
pub documents_per_second: f64,
pub chunks_per_second: f64,
pub embeddings_per_second: f64,
pub avg_indexing_time_ms: f64,
pub index_growth_rate_bps: f64,
pub batch_efficiency: f64,
pub change_detection_accuracy: f64,
pub vector_update_efficiency: f64,
}Expand description
Indexing-specific metrics
Fields§
§documents_per_second: f64Documents processed per second
chunks_per_second: f64Chunks processed per second
embeddings_per_second: f64Embeddings processed per second
avg_indexing_time_ms: f64Average indexing time per document
index_growth_rate_bps: f64Index size growth rate (bytes per second)
batch_efficiency: f64Batch processing efficiency
change_detection_accuracy: f64Change detection accuracy
vector_update_efficiency: f64Vector update efficiency
Trait Implementations§
Source§impl Clone for IndexingMetrics
impl Clone for IndexingMetrics
Source§fn clone(&self) -> IndexingMetrics
fn clone(&self) -> IndexingMetrics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IndexingMetrics
impl Debug for IndexingMetrics
Source§impl<'de> Deserialize<'de> for IndexingMetrics
impl<'de> Deserialize<'de> for IndexingMetrics
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for IndexingMetrics
impl RefUnwindSafe for IndexingMetrics
impl Send for IndexingMetrics
impl Sync for IndexingMetrics
impl Unpin for IndexingMetrics
impl UnwindSafe for IndexingMetrics
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