mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 19:50:36 +00:00
9 lines
175 B
Go
9 lines
175 B
Go
|
package metrics
|
||
|
|
||
|
// GaugeFloat64s hold a float64 value that can be set arbitrarily.
|
||
|
type GaugeFloat64 interface {
|
||
|
Snapshot() GaugeFloat64
|
||
|
Update(float64)
|
||
|
Value() float64
|
||
|
}
|