mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-14 10:13:10 +02:00
cc1eaec683
Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/otlp/internal/retry Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /schema Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/otlp/otlpmetric/otlpmetrichttp Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/stdout/stdouttrace Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/otlp/otlpmetric/otlpmetricgrpc Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/stdout/stdoutmetric Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/prometheus Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/zipkin Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /trace Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/otlp/otlpmetric Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/jaeger Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/otlp/otlptrace/otlptracehttp Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /metric Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/otlp/otlptrace/otlptracegrpc Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /exporters/otlp/otlptrace Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /sdk/metric Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /bridge/opencensus Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 in /sdk Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 Co-authored-by: MrAlias <MrAlias@users.noreply.github.com>
45 lines
1.5 KiB
Modula-2
45 lines
1.5 KiB
Modula-2
module go.opentelemetry.io/otel/exporters/otlp/otlpmetric
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/google/go-cmp v0.5.9
|
|
github.com/stretchr/testify v1.8.1
|
|
go.opentelemetry.io/otel v1.11.1
|
|
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.11.1
|
|
go.opentelemetry.io/otel/metric v0.33.0
|
|
go.opentelemetry.io/otel/sdk v1.11.1
|
|
go.opentelemetry.io/otel/sdk/metric v0.33.0
|
|
go.opentelemetry.io/proto/otlp v0.19.0
|
|
google.golang.org/grpc v1.50.1
|
|
google.golang.org/protobuf v1.28.1
|
|
)
|
|
|
|
require (
|
|
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-logr/logr v1.2.3 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.11.1 // indirect
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
|
|
golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8 // indirect
|
|
golang.org/x/text v0.3.5 // indirect
|
|
google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace go.opentelemetry.io/otel/metric => ../../../metric
|
|
|
|
replace go.opentelemetry.io/otel/sdk/metric => ../../../sdk/metric
|
|
|
|
replace go.opentelemetry.io/otel => ../../..
|
|
|
|
replace go.opentelemetry.io/otel/sdk => ../../../sdk
|
|
|
|
replace go.opentelemetry.io/otel/exporters/otlp/internal/retry => ../internal/retry
|
|
|
|
replace go.opentelemetry.io/otel/trace => ../../../trace
|