Violetta
Violetta

Reputation: 603

Display a metric with a slow increment

I have my own counter type metric. It changes quite rarely: +1, +2 values per hour. I am trying to plot this metric on grafana so that the moment of change is displayed as a peak. I tried rate(my_metric[1m]), irate(my_metric[1m]), increase(my_metric[1m]), but the value is always 0 on the graph, although if output only my_metric, the values will grow.

How do I build a query so that the metric changes are visible?

Upvotes: 0

Views: 219

Answers (1)

linpingta
linpingta

Reputation: 2620

May try to change time window from 1m to 1h, like below:

rate(my_metric[1h])

And another solution may try to check some grafana setting

Hope it may help

Upvotes: 0

Related Questions