penumbra_app/
metrics.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//! Crate-specific metrics functionality.
//!
//! This module re-exports the contents of the `metrics` crate.  This is
//! effectively a way to monkey-patch the functions in this module into the
//! `metrics` crate, at least from the point of view of the other code in this
//! crate.
//!
//! Code in this crate that wants to use metrics should `use crate::metrics;`,
//! so that this module shadows the `metrics` crate.
//!
//! This trick is probably good to avoid in general, because it could be
//! confusing, but in this limited case, it seems like a clean option.

pub use metrics::*;

/// Registers all metrics used by this crate.
pub fn register_metrics() {
    cnidarium::register_metrics();
    penumbra_stake::component::register_metrics();
    penumbra_funding::component::register_metrics();
    penumbra_dex::component::register_metrics();
    // TODO: this should be under component::
    penumbra_governance::register_metrics();
    penumbra_ibc::component::register_metrics();
    penumbra_shielded_pool::component::register_metrics();

    describe_counter!(
        MEMPOOL_CHECKTX_TOTAL,
        Unit::Count,
        "The total number of checktx requests made to the mempool"
    );
}

pub const MEMPOOL_CHECKTX_TOTAL: &str = "penumbra_pd_mempool_checktx_total";