1
0
mirror of https://github.com/distribution/distribution synced 2024-11-06 19:35:52 +01:00

Remove duplicate code that instruments Redis OTLP

This was somehow overlooked in https://github.com/distribution/distribution/pull/4019

Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
This commit is contained in:
Milos Gajdos 2023-09-04 17:52:38 +01:00
parent 9790bc806c
commit 6baa31a273
No known key found for this signature in database
GPG Key ID: 01300E5E6D417439

@ -498,11 +498,6 @@ func (app *App) configureRedis(cfg *configuration.Configuration) {
app.redis = app.createPool(cfg.Redis)
// Enable tracing instrumentation.
if err := redisotel.InstrumentTracing(app.redis); err != nil {
dcontext.GetLogger(app).Errorf("failed to instrument tracing on redis: %v", err)
}
// Enable metrics instrumentation.
if err := redisotel.InstrumentMetrics(app.redis); err != nil {
dcontext.GetLogger(app).Errorf("failed to instrument metrics on redis: %v", err)