|
1 | 1 | module github.com/open-telemetry/opentelemetry-collector-contrib/processor/metricstransformprocessor |
2 | 2 |
|
3 | | -go 1.17 |
| 3 | +go 1.24.0 |
4 | 4 |
|
5 | 5 | require ( |
6 | 6 | github.com/census-instrumentation/opencensus-proto v0.3.0 |
7 | | - github.com/google/go-cmp v0.5.8 |
| 7 | + github.com/google/go-cmp v0.7.0 |
8 | 8 | github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus v0.51.0 |
9 | | - github.com/stretchr/testify v1.7.1 |
| 9 | + github.com/stretchr/testify v1.11.1 |
10 | 10 | go.opentelemetry.io/collector v0.51.0 |
11 | | - go.opentelemetry.io/collector/pdata v0.51.0 |
| 11 | + go.opentelemetry.io/collector/pdata v1.42.0 |
12 | 12 | go.uber.org/zap v1.21.0 |
13 | | - google.golang.org/protobuf v1.28.0 |
14 | | - |
| 13 | + google.golang.org/protobuf v1.36.9 |
15 | 14 | ) |
16 | 15 |
|
17 | 16 | require ( |
18 | 17 | github.com/davecgh/go-spew v1.1.1 // indirect |
19 | 18 | github.com/gogo/protobuf v1.3.2 // indirect |
20 | 19 | github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect |
21 | | - github.com/golang/protobuf v1.5.2 // indirect |
| 20 | + github.com/golang/protobuf v1.5.4 // indirect |
22 | 21 | github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect |
| 22 | + github.com/hashicorp/go-version v1.7.0 // indirect |
23 | 23 | github.com/json-iterator/go v1.1.12 // indirect |
24 | 24 | github.com/knadh/koanf v1.4.1 // indirect |
25 | 25 | github.com/mitchellh/copystructure v1.2.0 // indirect |
26 | 26 | github.com/mitchellh/mapstructure v1.5.0 // indirect |
27 | 27 | github.com/mitchellh/reflectwalk v1.0.2 // indirect |
28 | 28 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
29 | | - github.com/modern-go/reflect2 v1.0.2 // indirect |
| 29 | + github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect |
30 | 30 | github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.51.0 // indirect |
31 | 31 | github.com/pmezard/go-difflib v1.0.0 // indirect |
32 | 32 | go.opencensus.io v0.23.0 // indirect |
| 33 | + go.opentelemetry.io/collector/featuregate v1.42.0 // indirect |
33 | 34 | go.opentelemetry.io/collector/semconv v0.51.0 // indirect |
34 | | - go.opentelemetry.io/otel v1.7.0 // indirect |
35 | | - go.opentelemetry.io/otel/metric v0.30.0 // indirect |
36 | | - go.opentelemetry.io/otel/trace v1.7.0 // indirect |
| 35 | + go.opentelemetry.io/otel v1.37.0 // indirect |
| 36 | + go.opentelemetry.io/otel/metric v1.37.0 // indirect |
| 37 | + go.opentelemetry.io/otel/trace v1.37.0 // indirect |
37 | 38 | go.uber.org/atomic v1.9.0 // indirect |
38 | | - go.uber.org/multierr v1.8.0 // indirect |
39 | | - golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect |
40 | | - golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect |
41 | | - golang.org/x/text v0.3.7 // indirect |
| 39 | + go.uber.org/multierr v1.11.0 // indirect |
| 40 | + golang.org/x/net v0.41.0 // indirect |
| 41 | + golang.org/x/sys v0.33.0 // indirect |
| 42 | + golang.org/x/text v0.26.0 // indirect |
42 | 43 | google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect |
43 | | - google.golang.org/grpc v1.46.0 // indirect |
| 44 | + google.golang.org/grpc v1.75.1 // indirect |
44 | 45 | gopkg.in/yaml.v2 v2.4.0 // indirect |
45 | | - gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
| 46 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
46 | 47 | ) |
47 | 48 |
|
48 | 49 | replace github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/opencensus => ../../pkg/translator/opencensus |
|
0 commit comments