mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-07 23:02:15 +02:00
1cfd83a1ee
Bump google.golang.org/grpc from 1.60.0 to 1.60.1 in /exporters/otlp/otlpmetric/otlpmetrichttp Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 in /exporters/otlp/otlpmetric/otlpmetrichttp Bump github.com/go-logr/logr from 1.3.0 to 1.4.1 Bump github.com/go-logr/logr from 1.3.0 to 1.4.1 in /sdk/metric Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 in /exporters/prometheus Bump github.com/go-logr/logr from 1.3.0 to 1.4.1 in /sdk Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 in /exporters/otlp/otlptrace/otlptracehttp Bump google.golang.org/grpc from 1.60.0 to 1.60.1 in /exporters/otlp/otlptrace/otlptracehttp Bump google.golang.org/grpc from 1.60.0 to 1.60.1 in /bridge/opentracing/test Bump google.golang.org/grpc from 1.60.0 to 1.60.1 in /exporters/otlp/otlpmetric/otlpmetricgrpc Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 in /exporters/otlp/otlpmetric/otlpmetricgrpc Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 in /exporters/otlp/otlptrace Bump github.com/go-logr/logr from 1.3.0 to 1.4.1 in /exporters/zipkin Bump google.golang.org/grpc from 1.60.0 to 1.60.1 in /example/otel-collector Bump google.golang.org/grpc from 1.60.0 to 1.60.1 in /exporters/otlp/otlptrace/otlptracegrpc Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 in /exporters/otlp/otlptrace/otlptracegrpc
28 lines
737 B
Modula-2
28 lines
737 B
Modula-2
module go.opentelemetry.io/otel/example/passthrough
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
go.opentelemetry.io/otel v1.21.0
|
|
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.21.0
|
|
go.opentelemetry.io/otel/sdk v1.21.0
|
|
go.opentelemetry.io/otel/trace v1.21.0
|
|
)
|
|
|
|
require (
|
|
github.com/go-logr/logr v1.4.1 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
go.opentelemetry.io/otel/metric v1.21.0 // indirect
|
|
golang.org/x/sys v0.15.0 // indirect
|
|
)
|
|
|
|
replace (
|
|
go.opentelemetry.io/otel => ../..
|
|
go.opentelemetry.io/otel/sdk => ../../sdk
|
|
go.opentelemetry.io/otel/trace => ../../trace
|
|
)
|
|
|
|
replace go.opentelemetry.io/otel/exporters/stdout/stdouttrace => ../../exporters/stdout/stdouttrace
|
|
|
|
replace go.opentelemetry.io/otel/metric => ../../metric
|