Struct iroh_relay::server::StunMetrics
source · pub struct StunMetrics {
pub requests: Counter,
pub ipv4_success: Counter,
pub ipv6_success: Counter,
pub bad_requests: Counter,
pub failures: Counter,
}
Available on crate feature
server
only.Expand description
StunMetrics tracked for the DERPER
Fields§
§requests: Counter
Number of stun requests made
ipv4_success: Counter
Number of successful requests over ipv4
ipv6_success: Counter
Number of successful requests over ipv6
bad_requests: Counter
Number of bad requests, either non-stun packets or incorrect binding request
failures: Counter
Number of failures
Trait Implementations§
source§impl Clone for StunMetrics
impl Clone for StunMetrics
source§fn clone(&self) -> StunMetrics
fn clone(&self) -> StunMetrics
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 StunMetrics
impl Debug for StunMetrics
source§impl Default for StunMetrics
impl Default for StunMetrics
source§impl Iterable for StunMetrics
impl Iterable for StunMetrics
source§impl Metric for StunMetrics
impl Metric for StunMetrics
§fn with_metric<T, F>(f: F)
fn with_metric<T, F>(f: F)
Access to this metrics group to record a metric.
Only records if this metric is registered in the global registry.
§fn try_get() -> Option<&'static Self>
fn try_get() -> Option<&'static Self>
Attempts to get the current metric from the global registry.
Auto Trait Implementations§
impl Freeze for StunMetrics
impl RefUnwindSafe for StunMetrics
impl Send for StunMetrics
impl Sync for StunMetrics
impl Unpin for StunMetrics
impl UnwindSafe for StunMetrics
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§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
Mutably borrows from an owned value. Read more