pub struct ShardMetrics {Show 14 fields
    pub records_processed: u64,
    pub records_failed: u64,
    pub retry_attempts: u64,
    pub processing_time: Duration,
    pub checkpoints_succeeded: u64,
    pub checkpoints_failed: u64,
    pub iterator_renewals: u64,
    pub iterator_failures: u64,
    pub soft_errors: u64,
    pub hard_errors: u64,
    pub avg_processing_time: Duration,
    pub max_processing_time: Duration,
    pub window_start: Instant,
    pub last_updated: Instant,
}Expand description
Holds aggregated metrics for a single shard
Fields§
§records_processed: u64§records_failed: u64§retry_attempts: u64§processing_time: Duration§checkpoints_succeeded: u64§checkpoints_failed: u64§iterator_renewals: u64§iterator_failures: u64§soft_errors: u64§hard_errors: u64§avg_processing_time: Duration§max_processing_time: Duration§window_start: Instant§last_updated: InstantTrait Implementations§
Source§impl Clone for ShardMetrics
 
impl Clone for ShardMetrics
Source§fn clone(&self) -> ShardMetrics
 
fn clone(&self) -> ShardMetrics
Returns a copy 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 ShardMetrics
 
impl Debug for ShardMetrics
Auto Trait Implementations§
impl Freeze for ShardMetrics
impl RefUnwindSafe for ShardMetrics
impl Send for ShardMetrics
impl Sync for ShardMetrics
impl Unpin for ShardMetrics
impl UnwindSafe for ShardMetrics
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.