Commit df98d134 authored by Conner Fromknecht's avatar Conner Fromknecht

fix: remove extra space in BSS metric names

parent 6c9b91db
---
'@eth-optimism/batch-submitter-service': patch
---
Remove extra space in metric names
......@@ -46,7 +46,7 @@ type Metrics struct {
}
func NewMetrics(subsystem string) *Metrics {
subsystem = "batch_submitter_ " + strings.ToLower(subsystem)
subsystem = "batch_submitter_" + strings.ToLower(subsystem)
return &Metrics{
ETHBalance: promauto.NewGauge(prometheus.GaugeOpts{
Name: "balance_eth",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment