pub struct TxToxicFlowTelemetrySnapshot {Show 13 fields
pub reporter_outcomes_dropped: u64,
pub reporter_outcomes_unavailable: u64,
pub direct_accepted: u64,
pub rpc_accepted: u64,
pub jito_accepted: u64,
pub rejected_due_to_staleness: u64,
pub rejected_due_to_reorg_risk: u64,
pub rejected_due_to_state_drift: u64,
pub submit_on_stale_blockhash: u64,
pub leader_route_miss_rate: u64,
pub opportunity_age_at_send_ms: Option<u64>,
pub rejected_due_to_replay_recovery: u64,
pub suppressed_submissions: u64,
}Expand description
Snapshot of built-in toxic-flow counters collected by TxSubmitClient.
Fields§
§reporter_outcomes_dropped: u64Number of external reporter outcomes dropped because the reporter queue was full.
Number of outcomes that could not reach the external reporter because the worker was unavailable.
direct_accepted: u64Number of direct-route accepts observed.
rpc_accepted: u64Number of RPC-route accepts observed.
jito_accepted: u64Number of Jito-route accepts observed.
rejected_due_to_staleness: u64Number of submit attempts rejected due to stale inputs.
rejected_due_to_reorg_risk: u64Number of submit attempts rejected due to reorg risk.
rejected_due_to_state_drift: u64Number of submit attempts rejected due to state drift.
submit_on_stale_blockhash: u64Number of accepted submits emitted while the source was stale.
leader_route_miss_rate: u64Number of route misses classified as leader misses.
opportunity_age_at_send_ms: Option<u64>Most recent opportunity age seen at submit time.
rejected_due_to_replay_recovery: u64Number of submits rejected while replay recovery was pending.
suppressed_submissions: u64Number of submits suppressed by a built-in key.
Trait Implementations§
Source§impl Clone for TxToxicFlowTelemetrySnapshot
impl Clone for TxToxicFlowTelemetrySnapshot
Source§fn clone(&self) -> TxToxicFlowTelemetrySnapshot
fn clone(&self) -> TxToxicFlowTelemetrySnapshot
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for TxToxicFlowTelemetrySnapshot
impl Debug for TxToxicFlowTelemetrySnapshot
Source§impl Default for TxToxicFlowTelemetrySnapshot
impl Default for TxToxicFlowTelemetrySnapshot
Source§fn default() -> TxToxicFlowTelemetrySnapshot
fn default() -> TxToxicFlowTelemetrySnapshot
Source§impl<'de> Deserialize<'de> for TxToxicFlowTelemetrySnapshot
impl<'de> Deserialize<'de> for TxToxicFlowTelemetrySnapshot
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 TxToxicFlowTelemetrySnapshot
impl PartialEq for TxToxicFlowTelemetrySnapshot
Source§fn eq(&self, other: &TxToxicFlowTelemetrySnapshot) -> bool
fn eq(&self, other: &TxToxicFlowTelemetrySnapshot) -> bool
self and other values to be equal, and is used by ==.impl Copy for TxToxicFlowTelemetrySnapshot
impl Eq for TxToxicFlowTelemetrySnapshot
impl StructuralPartialEq for TxToxicFlowTelemetrySnapshot
Auto Trait Implementations§
impl Freeze for TxToxicFlowTelemetrySnapshot
impl RefUnwindSafe for TxToxicFlowTelemetrySnapshot
impl Send for TxToxicFlowTelemetrySnapshot
impl Sync for TxToxicFlowTelemetrySnapshot
impl Unpin for TxToxicFlowTelemetrySnapshot
impl UnsafeUnpin for TxToxicFlowTelemetrySnapshot
impl UnwindSafe for TxToxicFlowTelemetrySnapshot
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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> 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>
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>
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 more