generated from flashbots/go-template
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add basic latency metrics (#616)
* feat: add basic latency metrics * fix: align dockerfile's go version * review: simplify calculations
- Loading branch information
1 parent
fa310a4
commit d6eaf00
Showing
5 changed files
with
162 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# syntax=docker/dockerfile:1 | ||
FROM golang:1.20 as builder | ||
FROM golang:1.21 as builder | ||
ARG VERSION | ||
WORKDIR /build | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
// Package metrics provides prometheus metrics primitives to the rest of the app | ||
package metrics | ||
|
||
import ( | ||
"context" | ||
"math" | ||
|
||
"go.opentelemetry.io/otel/exporters/prometheus" | ||
otelapi "go.opentelemetry.io/otel/metric" | ||
"go.opentelemetry.io/otel/sdk/metric" | ||
"go.opentelemetry.io/otel/sdk/resource" | ||
semconv "go.opentelemetry.io/otel/semconv/v1.24.0" | ||
) | ||
|
||
const ( | ||
metricsNamespace = "mev-boost-relay" | ||
) | ||
|
||
var ( | ||
meter otelapi.Meter | ||
|
||
GetPayloadLatencyHistogram otelapi.Float64Histogram | ||
PublishBlockLatencyHistogram otelapi.Float64Histogram | ||
|
||
latencyBoundaries = otelapi.WithExplicitBucketBoundaries(func() []float64 { | ||
base := math.Exp(math.Log(12.0) / 15.0) | ||
res := make([]float64, 0, 31) | ||
for i := -15; i < 16; i++ { | ||
res = append(res, math.Pow(base, float64(i))) | ||
} | ||
return res | ||
}()...) | ||
) | ||
|
||
func Setup(ctx context.Context) error { | ||
for _, setup := range []func(context.Context) error{ | ||
setupMeter, // must come first | ||
setupGetPayloadLatency, | ||
setupPublishBlockLatency, | ||
} { | ||
if err := setup(ctx); err != nil { | ||
return err | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func setupMeter(ctx context.Context) error { | ||
res, err := resource.New(ctx, | ||
resource.WithAttributes(semconv.ServiceName(metricsNamespace)), | ||
) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
exporter, err := prometheus.New( | ||
prometheus.WithNamespace(metricsNamespace), | ||
) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
provider := metric.NewMeterProvider( | ||
metric.WithReader(exporter), | ||
metric.WithResource(res), | ||
) | ||
|
||
meter = provider.Meter(metricsNamespace) | ||
|
||
return nil | ||
} | ||
|
||
func setupGetPayloadLatency(ctx context.Context) error { | ||
latency, err := meter.Float64Histogram( | ||
"get_payload_latency", | ||
otelapi.WithDescription("statistics on the duration of getPayload requests execution"), | ||
otelapi.WithUnit("ms"), | ||
latencyBoundaries, | ||
) | ||
GetPayloadLatencyHistogram = latency | ||
if err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
func setupPublishBlockLatency(ctx context.Context) error { | ||
latency, err := meter.Float64Histogram( | ||
"publish_block_latency", | ||
otelapi.WithDescription("statistics on the duration of publishBlock requests sent to beacon node"), | ||
otelapi.WithUnit("ms"), | ||
latencyBoundaries, | ||
) | ||
PublishBlockLatencyHistogram = latency | ||
if err != nil { | ||
return err | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters