prometheus.Gauge.inc()
Increases the gauge by one for the specified label values.
Syntax
Note:
In this syntax diagram, the square brackets ([ ]) are part of the syntax.
inc( [ labels ] )
- labels labels is a comma-separated list of label names inside
square brackets that define the metric's dimensions (for example:
[method,endpoint]). A label name cannot be empty; if you don't need labels, use empty brackets[]
Usage
Use the prometheus.Gauge.inc() method to increment the value of a gauge
metric by one. The labels parameter must match the label definition of the gauge.
This is typically used to count occurrences or track resource levels that can increase and
decrease.
Example
-- Define the gauge variable
DEFINE gauge prometheus.Gauge
-- Create a gauge metric
LET gauge = prometheus.Gauge.create("gauge_hello", "a gauge", ["labela", "labelb"])
-- Increment the gauge
CALL gauge.inc(["valuea", "valueb"])