We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b6cf12 commit eb74389Copy full SHA for eb74389
cmd/geth/config.go
@@ -185,10 +185,10 @@ func makeFullNode(ctx *cli.Context) (*node.Node, ethapi.Backend) {
185
protos = append(protos, fmt.Sprintf("%v/%d", p.Name, p.Version))
186
}
187
metrics.NewRegisteredGaugeInfo("geth/info", nil).Update(metrics.GaugeInfoValue{
188
- "arch": runtime.GOARCH,
189
- "os": runtime.GOOS,
190
- "version": cfg.Node.Version,
191
- "eth_protocols": strings.Join(protos, ","),
+ "arch": runtime.GOARCH,
+ "os": runtime.GOOS,
+ "version": cfg.Node.Version,
+ "protocols": strings.Join(protos, ","),
192
})
193
194
0 commit comments