Skip to content

Commit

Permalink
op-challenger: Fix vm execution time metric name (ethereum-optimism#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
ajsutton authored Jun 25, 2024
1 parent 8894075 commit d5f9504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions op-challenger/metrics/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ func NewMetrics() *Metrics {
}),
vmExecutionTime: factory.NewHistogramVec(prometheus.HistogramOpts{
Namespace: Namespace,
Name: "asterisc_execution_time",
Help: "Time (in seconds) to execute asterisc",
Name: "vm_execution_time",
Help: "Time (in seconds) to execute the fault proof VM",
Buckets: append(
[]float64{1.0, 10.0},
prometheus.ExponentialBuckets(30.0, 2.0, 14)...),
Expand Down

0 comments on commit d5f9504

Please sign in to comment.