Commit e52c36f0 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

Merge pull request #2186 from cfromknecht/bss-fix-metric-name-space

fix: remove extra space in BSS metric names
parents 6c9b91db df98d134
---
'@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