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, doc_auto_cfg))]
9
10pub mod chain;
11/// The metrics hooks for prometheus.
12pub mod hooks;
13pub mod recorder;
14/// The metric server serving the metrics.
15pub mod server;
16pub mod version;
17
18pub use metrics_exporter_prometheus::*;
19pub use metrics_process::*;