I am trying to find a way to instrument Prometheus Gauge metrics using OpenCencus in Golang. The goal is to track no of active sessions. So value can increase and decrease and also can reset to 0 on server restart.
They have an example of it https://opencensus.io/quickstart/go/metrics/, but I am not able to co-relate any with Gauge and resetting to 0.
Could you suggest which Measure and View I should use to instrument Gauge which can increase, decrease, and reset to 0?
https://opencensus.io/stats/view/
I've not tried this but
LastValue
may (!?) convert to a Prometheus Gauge.Count
gives you the number of measurements and yields an (increasing) Counter. So, that's not helpful for you.The only other alternatives are
Sum
andDistribution
.If
LastValue
doesn't yield a gauge, you may need to useDistribution
.Update:
LastValue
==Gauge
Hacked the example that was given:
And then
go run .
yields:And metrics on
localhost:8080/metrics
yields: