mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-02-11 13:38:37 +02:00
build(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1 in /exporters/otlp/otlpmetric/otlpmetricgrpc build(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /exporters/otlp/otlpmetric/otlpmetricgrpc build(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /exporters/prometheus build(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1 in /exporters/otlp/otlptrace/otlptracegrpc build(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /exporters/otlp/otlptrace/otlptracegrpc build(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1 in /bridge/opentracing/test build(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /exporters/otlp/otlptrace/otlptracehttp build(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1 in /exporters/otlp/otlptrace/otlptracehttp build(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /exporters/otlp/otlptrace build(deps): bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in /exporters/otlp/otlpmetric/otlpmetrichttp build(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1 in /exporters/otlp/otlpmetric/otlpmetrichttp build(deps): bump google.golang.org/grpc from 1.62.0 to 1.62.1 in /example/otel-collector build(deps): bump golang.org/x/sys from 0.17.0 to 0.18.0 in /sdk build(deps): bump golang.org/x/tools from 0.18.0 to 0.19.0 in /internal/tools
40 lines
1.2 KiB
Modula-2
40 lines
1.2 KiB
Modula-2
module go.opentelemetry.io/otel/exporters/prometheus
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/prometheus/client_golang v1.19.0
|
|
github.com/prometheus/client_model v0.6.0
|
|
github.com/stretchr/testify v1.9.0
|
|
go.opentelemetry.io/otel v1.24.0
|
|
go.opentelemetry.io/otel/metric v1.24.0
|
|
go.opentelemetry.io/otel/sdk v1.24.0
|
|
go.opentelemetry.io/otel/sdk/metric v1.24.0
|
|
google.golang.org/protobuf v1.33.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-logr/logr v1.4.1 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/common v0.48.0 // indirect
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.24.0 // indirect
|
|
golang.org/x/sys v0.18.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace go.opentelemetry.io/otel => ../..
|
|
|
|
replace go.opentelemetry.io/otel/sdk => ../../sdk
|
|
|
|
replace go.opentelemetry.io/otel/sdk/metric => ../../sdk/metric
|
|
|
|
replace go.opentelemetry.io/otel/trace => ../../trace
|
|
|
|
replace go.opentelemetry.io/otel/metric => ../../metric
|