Skip to content

Commit

Permalink
Rename Execution Client metrics *.syncing.* -> *.sync.*
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-ssvlabs committed Dec 9, 2024
1 parent bc73a8e commit 142c98f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eth/executionclient/observability.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ var (

syncingDistanceGauge = observability.NewMetric(
meter.Int64Gauge(
metricName("syncing.distance"),
metricName("sync.distance"),
metric.WithUnit("{block}"),
metric.WithDescription("execution client syncing distance which is a delta between highest and current blocks")))

clientStatusGauge = observability.NewMetric(
meter.Int64Gauge(
metricName("syncing.status"),
metricName("sync.status"),
metric.WithDescription("execution client syncing status")))

lastProcessedBlockGauge = observability.NewMetric(
meter.Int64Gauge(
metricName("syncing.last_processed_block"),
metricName("sync.last_processed_block"),
metric.WithUnit("{block_number}"),
metric.WithDescription("last processed block by execution client")))
)
Expand Down

0 comments on commit 142c98f

Please sign in to comment.