Skip to content

Commit 407022d

Browse files
Merge pull request #4623 from pacevedom/USHIFT-5297
USHIFT-5297: Add telemetry client
2 parents 026db42 + 8b85ee4 commit 407022d

File tree

183 files changed

+27083
-1255
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+27083
-1255
lines changed

go.mod

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/apparentlymart/go-cidr v1.1.0
99
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // openshift-controller-manager
1010
github.com/google/go-cmp v0.6.0
11-
github.com/miekg/dns v1.1.62 // microshift
11+
github.com/miekg/dns v1.1.63 // microshift
1212
github.com/openshift/api v0.0.0-20250213010142-f5b09d13c01f
1313
github.com/openshift/build-machinery-go v0.0.0-20250211133638-a00a772ae1a2
1414
github.com/openshift/client-go v0.0.0-20250131180035-f7ec47e2d87a
@@ -44,6 +44,11 @@ require (
4444
github.com/coreos/go-systemd/v22 v22.5.0
4545
github.com/evanphx/json-patch v4.12.0+incompatible
4646
github.com/fsnotify/fsnotify v1.8.0
47+
github.com/golang/protobuf v1.5.4
48+
github.com/golang/snappy v0.0.4
49+
github.com/prometheus/client_model v0.6.1
50+
github.com/prometheus/common v0.62.0
51+
github.com/prometheus/prometheus v0.302.1
4752
gopkg.in/yaml.v2 v2.4.0
4853
k8s.io/utils v0.0.0-20241210054802-24370beab758
4954
sigs.k8s.io/kube-storage-version-migrator v0.0.6-0.20230721195810-5c8923c5ff96
@@ -52,7 +57,7 @@ require (
5257
)
5358

5459
require (
55-
cel.dev/expr v0.18.0 // indirect
60+
cel.dev/expr v0.19.0 // indirect
5661
github.com/Microsoft/hnslib v0.0.8 // indirect
5762
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
5863
github.com/containerd/errdefs v0.1.0 // indirect
@@ -88,7 +93,6 @@ require (
8893
github.com/cyphar/filepath-securejoin v0.3.4 // indirect
8994
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
9095
github.com/distribution/reference v0.6.0 // indirect
91-
github.com/docker/docker v27.4.1+incompatible // indirect
9296
github.com/docker/go-units v0.5.0 // indirect
9397
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
9498
github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect
@@ -101,11 +105,10 @@ require (
101105
github.com/go-logr/logr v1.4.2 // indirect
102106
github.com/go-logr/stdr v1.2.2 // indirect
103107
github.com/go-openapi/jsonpointer v0.21.0 // indirect
104-
github.com/go-openapi/jsonreference v0.20.4 // indirect
108+
github.com/go-openapi/jsonreference v0.21.0 // indirect
105109
github.com/go-openapi/swag v0.23.0 // indirect
106110
github.com/godbus/dbus/v5 v5.1.0 // indirect
107111
github.com/gogo/protobuf v1.3.2 // indirect
108-
github.com/golang/protobuf v1.5.4 // indirect
109112
github.com/google/btree v1.0.1 // indirect
110113
github.com/google/cadvisor v0.51.0 // indirect
111114
github.com/google/cel-go v0.22.0 // indirect
@@ -114,9 +117,10 @@ require (
114117
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
115118
github.com/google/uuid v1.6.0 // indirect
116119
github.com/gorilla/websocket v1.5.0 // indirect
120+
github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc // indirect
117121
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
118122
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
119-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 // indirect
123+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1 // indirect
120124
github.com/inconshreveable/mousetrap v1.1.0 // indirect
121125
github.com/jonboulle/clockwork v0.4.0 // indirect
122126
github.com/josharian/intern v1.0.0 // indirect
@@ -147,9 +151,7 @@ require (
147151
github.com/pkg/profile v1.7.0 // indirect
148152
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
149153
github.com/pquerna/cachecontrol v0.1.0 // indirect
150-
github.com/prometheus/client_golang v1.20.5 // indirect
151-
github.com/prometheus/client_model v0.6.1 // indirect
152-
github.com/prometheus/common v0.61.0 // indirect
154+
github.com/prometheus/client_golang v1.21.0-rc.0 // indirect
153155
github.com/prometheus/procfs v0.15.1 // indirect
154156
github.com/robfig/cron v1.2.0 // indirect
155157
github.com/robfig/cron/v3 v3.0.1 // indirect
@@ -162,31 +164,31 @@ require (
162164
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
163165
go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.42.0 // indirect
164166
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 // indirect
165-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
166-
go.opentelemetry.io/otel v1.33.0 // indirect
167-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 // indirect
168-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 // indirect
169-
go.opentelemetry.io/otel/metric v1.33.0 // indirect
170-
go.opentelemetry.io/otel/sdk v1.33.0 // indirect
171-
go.opentelemetry.io/otel/trace v1.33.0 // indirect
172-
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
167+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
168+
go.opentelemetry.io/otel v1.34.0 // indirect
169+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect
170+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect
171+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
172+
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
173+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
174+
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
173175
go.uber.org/atomic v1.11.0 // indirect
174176
go.uber.org/multierr v1.11.0 // indirect
175177
go.uber.org/zap v1.27.0 // indirect
176178
golang.org/x/crypto v0.33.0 // indirect
177179
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
178180
golang.org/x/mod v0.22.0 // indirect
179181
golang.org/x/net v0.35.0 // indirect
180-
golang.org/x/oauth2 v0.24.0 // indirect
182+
golang.org/x/oauth2 v0.25.0 // indirect
181183
golang.org/x/sync v0.11.0 // indirect
182184
golang.org/x/term v0.29.0 // indirect
183185
golang.org/x/text v0.22.0 // indirect
184-
golang.org/x/time v0.8.0 // indirect
185-
golang.org/x/tools v0.28.0 // indirect
186-
google.golang.org/genproto/googleapis/api v0.0.0-20241216192217-9240e9c98484 // indirect
187-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 // indirect
188-
google.golang.org/grpc v1.69.0 // indirect
189-
google.golang.org/protobuf v1.36.0 // indirect
186+
golang.org/x/time v0.9.0 // indirect
187+
golang.org/x/tools v0.29.0 // indirect
188+
google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f // indirect
189+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect
190+
google.golang.org/grpc v1.70.0 // indirect
191+
google.golang.org/protobuf v1.36.4 // indirect
190192
gopkg.in/inf.v0 v0.9.1 // indirect
191193
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
192194
gopkg.in/square/go-jose.v2 v2.6.0 // indirect

0 commit comments

Comments
 (0)