pub struct BatchExecutionTiming {
pub totals: ExecuteTimings,
pub wall_clock_us: u64,
pub slowest_thread: ThreadExecuteTimings,
}
Expand description
Measures times related to transaction execution in a slot.
Fields§
§totals: ExecuteTimings
Time used by transaction execution. Accumulated across multiple threads that are running
execute_batch()
.
wall_clock_us: u64
Wall clock time used by the transaction execution part of pipeline.
ConfirmationTiming::replay_elapsed
includes this time. In microseconds.
slowest_thread: ThreadExecuteTimings
Time used to execute transactions, via execute_batch()
, in the thread that consumed the
most time.
Implementations§
source§impl BatchExecutionTiming
impl BatchExecutionTiming
fn accumulate(&mut self, new_batch: ExecuteBatchesInternalMetrics)
Trait Implementations§
source§impl Debug for BatchExecutionTiming
impl Debug for BatchExecutionTiming
source§impl Default for BatchExecutionTiming
impl Default for BatchExecutionTiming
source§fn default() -> BatchExecutionTiming
fn default() -> BatchExecutionTiming
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for BatchExecutionTiming
impl Send for BatchExecutionTiming
impl Sync for BatchExecutionTiming
impl Unpin for BatchExecutionTiming
impl UnwindSafe for BatchExecutionTiming
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request