13 lines
215 B
Go
13 lines
215 B
Go
package prometheus
|
|
|
|
import dto "github.com/prometheus/client_model/go"
|
|
|
|
type prometheusGauge struct {
|
|
name string
|
|
c *dto.Metric
|
|
}
|
|
|
|
func (c prometheusGauge) Get() float64 {
|
|
return getFloat64(c.c.Gauge.Value)
|
|
}
|