Skip to main content

reth_node_metrics/
lib.rs

1//! Metrics utilities for the node.
2#![doc(
3    html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
4    html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
5    issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
6)]
7#![cfg_attr(not(test), warn(unused_crate_dependencies))]
8#![cfg_attr(docsrs, feature(doc_cfg))]
9
10pub mod chain;
11/// The metrics hooks for prometheus.
12pub mod hooks;
13pub mod process;
14pub mod recorder;
15/// The metric server serving the metrics.
16pub mod server;
17pub mod version;
18
19pub use metrics_exporter_prometheus::*;
20pub use metrics_process::*;