GaugeFloat64s hold a float64 value that can be set arbitrarily.
| 7 | |
| 8 | // GaugeFloat64s hold a float64 value that can be set arbitrarily. |
| 9 | type GaugeFloat64 interface { |
| 10 | Snapshot() GaugeFloat64 |
| 11 | Update(float64) |
| 12 | Value() float64 |
| 13 | } |
| 14 | |
| 15 | // GetOrRegisterGaugeFloat64 returns an existing GaugeFloat64 or constructs and registers a |
| 16 | // new StandardGaugeFloat64. |
no outgoing calls
no test coverage detected