mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
metrics: add missing GaugeInfo case in GetAll() (#33748)
GetAll did not return GaugeInfo metrics, which affects "chain/info" and "geth/info".
This commit is contained in:
parent
bba41f8072
commit
6b82cef68f
1 changed files with 2 additions and 0 deletions
|
|
@ -143,6 +143,8 @@ func (r *StandardRegistry) GetAll() map[string]map[string]interface{} {
|
|||
values["value"] = metric.Snapshot().Value()
|
||||
case *GaugeFloat64:
|
||||
values["value"] = metric.Snapshot().Value()
|
||||
case *GaugeInfo:
|
||||
values["value"] = metric.Snapshot().Value()
|
||||
case *Healthcheck:
|
||||
values["error"] = nil
|
||||
metric.Check()
|
||||
|
|
|
|||
Loading…
Reference in a new issue