#[derive(Debug, Clone)]
pub struct Metrics;
impl Metrics {
pub const RUNTIME_LOADER: &str = "kona_node_runtime_loader";
#[cfg(feature = "metrics")]
pub fn init() {
Self::describe();
}
#[cfg(feature = "metrics")]
pub fn describe() {
metrics::describe_gauge!(Self::RUNTIME_LOADER, "Runtime configuration metadata");
}
}