mirror of https://github.com/go-redis/redis.git
Update OpenTelemetry to 0.17.0 and fix "undefined: otel.Meter"
This commit is contained in:
parent
8d9ebc8459
commit
1f32092a3b
2
go.mod
2
go.mod
|
@ -7,5 +7,5 @@ require (
|
||||||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f
|
||||||
github.com/onsi/ginkgo v1.15.0
|
github.com/onsi/ginkgo v1.15.0
|
||||||
github.com/onsi/gomega v1.10.5
|
github.com/onsi/gomega v1.10.5
|
||||||
go.opentelemetry.io/otel v0.16.0
|
go.opentelemetry.io/otel v0.17.0
|
||||||
)
|
)
|
||||||
|
|
|
@ -3,8 +3,8 @@ package internal
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
|
||||||
"go.opentelemetry.io/otel"
|
|
||||||
"go.opentelemetry.io/otel/metric"
|
"go.opentelemetry.io/otel/metric"
|
||||||
|
"go.opentelemetry.io/otel/metric/global"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -21,7 +21,7 @@ func init() {
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
meter := metric.Must(otel.Meter("github.com/go-redis/redis"))
|
meter := metric.Must(global.Meter("github.com/go-redis/redis"))
|
||||||
|
|
||||||
WritesCounter = meter.NewInt64Counter("redis.writes",
|
WritesCounter = meter.NewInt64Counter("redis.writes",
|
||||||
metric.WithDescription("the number of writes initiated"),
|
metric.WithDescription("the number of writes initiated"),
|
||||||
|
|
Loading…
Reference in New Issue