Macro metrics::counter[][src]

counter!() { /* proc-macro */ }
Expand description

Increments a counter.

Counters represent a single monotonic value, which means the value can only be incremented, not decremented, and always starts out with an initial value of zero.

Metric names are shown below using string literals, but they can also be owned String values, which includes using macros such as format! directly at the callsite. String literals are preferred for performance where possible.

Example

// A basic counter:
counter!("some_metric_name", 12);

// Specifying labels:
counter!("some_metric_name", 12, "service" => "http");

// We can also pass labels by giving a vector or slice of key/value pairs:
let dynamic_val = "woo";
let labels = [("dynamic_key", format!("{}!", dynamic_val))];
counter!("some_metric_name", 12, &labels);

// As mentioned in the documentation, metric names also can be owned strings, including ones
// generated at the callsite via things like `format!`:
let name = String::from("some_owned_metric_name");
counter!(name, 12);

counter!(format!("{}_via_format", "name"), 12);