iroh_net/
metrics.rs

1//! Co-locating all of the iroh-net metrics structs
2pub use portmapper::Metrics as PortmapMetrics;
3
4#[cfg(feature = "iroh-relay")]
5#[cfg_attr(iroh_docsrs, doc(cfg(feature = "iroh-relay")))]
6pub use crate::relay::server::Metrics as RelayMetrics;
7pub use crate::{magicsock::Metrics as MagicsockMetrics, netcheck::Metrics as NetcheckMetrics};