Struct glean::private::LabeledMetric
source · pub struct LabeledMetric<T> { /* private fields */ }
Expand description
A labeled metric.
Labeled metrics allow to record multiple sub-metrics of the same type under different string labels.
Implementations§
source§impl<T> LabeledMetric<T>where
T: AllowLabeled + Clone,
impl<T> LabeledMetric<T>where
T: AllowLabeled + Clone,
sourcepub fn new(
meta: CommonMetricData,
labels: Option<Vec<Cow<'static, str>, Global>>
) -> LabeledMetric<T>
pub fn new(
meta: CommonMetricData,
labels: Option<Vec<Cow<'static, str>, Global>>
) -> LabeledMetric<T>
Creates a new labeled metric from the given metric instance and optional list of labels.
See get
for information on how static or dynamic labels are handled.
sourcepub fn get<S>(&self, label: S) -> Arc<T>where
S: AsRef<str>,
pub fn get<S>(&self, label: S) -> Arc<T>where
S: AsRef<str>,
Gets a specific metric for a given label.
If a set of acceptable labels were specified in the metrics.yaml
file,
and the given label is not in the set, it will be recorded under the special OTHER_LABEL
label.
If a set of acceptable labels was not specified in the metrics.yaml
file,
only the first 16 unique labels will be used.
After that, any additional labels will be recorded under the special OTHER_LABEL
label.
Labels must be snake_case
and less than 30 characters.
If an invalid label is used, the metric will be recorded in the special OTHER_LABEL
label.
sourcepub fn test_get_num_recorded_errors(&self, error: ErrorType) -> i32
pub fn test_get_num_recorded_errors(&self, error: ErrorType) -> i32
Exported for test purposes.
Gets the number of recorded errors for the given metric and error type.
Arguments
error
- The type of errorping_name
- represents the optional name of the ping to retrieve the metric for. Defaults to the first value insend_in_pings
.
Returns
The number of errors reported.