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
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
//! Utils to record metrics.

pub mod recorders;
pub use self::recorders::influxdb::{Measurement, Recorder, Tags};
use once_cell::sync::OnceCell;

static RECORDER: OnceCell<Recorder> = OnceCell::new();

pub struct GlobalRecorder;

impl GlobalRecorder {
    /// Gets the reference to the global recorder.
    /// Returns `None` if no recorder is set or is currently being initialized.
    /// This method never blocks.
    pub fn global() -> Option<&'static Recorder> {
        RECORDER.get()
    }

    /// Installs a new global recorder.
    /// Returns Err(Recorder) if a recorder has already been set.
    pub fn install(recorder: Recorder) -> Result<(), Recorder> {
        RECORDER.set(recorder)
    }
}

/// Records an event.
///
/// # Example
///
/// ```ignore
/// // An event with just a title:
/// event!("Error");
///
/// // An event with a title and a description:
/// event!("Error", "something went wrong");
///
/// // An event with a title, a description and tags:
/// event!(
///     "Error",
///     "something went wrong",
///     ["phase error", "coordinator"]
/// );
/// ```
#[macro_export]
macro_rules! event {
    ($title: expr) => {
        if let Some(recorder) = crate::metrics::GlobalRecorder::global() {
            recorder.event($title, None, None)
        }
    };
    ($title: expr, $description: expr) => {
        if let Some(recorder) = crate::metrics::GlobalRecorder::global() {
            recorder.event($title, Some($description), None)
        }
    };
    ($title: expr, $description: expr, $tags: expr) => {
        if let Some(recorder) = crate::metrics::GlobalRecorder::global() {
            recorder.event($title, Some($description), Some(&$tags))
        }
    };
}

/// Records a metric.
///
/// # Example
///
/// ```ignore
/// // A basic metric:
/// metric!(Measurement::RoundTotalNumber, 1);
///
/// // A metric with one tag:
/// metric!(Measurement::RoundParamSum, 0.7, ("round_id", 1));
///
/// // A metric with multiple tags:
/// metric!(
///     Measurement::RoundParamSum,
///     0.7,
///     ("round_id", 1),
///     ("phase", 2)
/// );
/// ```
#[macro_export]
macro_rules! metric {
    ($measurement: expr, $value: expr $(,)?) => {
        if let Some(recorder) = crate::metrics::GlobalRecorder::global() {
            recorder.metric($measurement, $value, None)
        }
    };
    ($measurement: expr, $value: expr, $($tag: expr),+ $(,)?) => {
        if let Some(recorder) = crate::metrics::GlobalRecorder::global() {
            let mut tags = crate::metrics::Tags::new();

            $(
                tags.add($tag.0, $tag.1);
            )*

            recorder.metric($measurement, $value, Some(tags))
        }
    };
}