Skip to content

Commit 68cbd34

Browse files
committed
feat(telemetry): introduce count for all Gateway API objects
1 parent b2bde94 commit 68cbd34

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ Adding a new version? You'll need three changes:
132132
- Disable translation to expression routes when feature gate `ExpressionRoutes`
133133
is enabled but feature gate `CombinedRoutes` is not enabled.
134134
[#4057](https://github.com/Kong/kubernetes-ingress-controller/pull/4057)
135+
- Telemetry reports now include a number of every Kind of Kubernetes object
136+
that is provided by `gateway.networking.k8s.io` CRDs.
137+
[#4058](https://github.com/Kong/kubernetes-ingress-controller/pull/4058)
135138

136139
### Changed
137140

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
github.com/jpillora/backoff v1.0.0
2222
github.com/kong/deck v1.20.0
2323
github.com/kong/go-kong v0.42.0
24-
github.com/kong/kubernetes-telemetry v0.0.4
24+
github.com/kong/kubernetes-telemetry v0.0.5
2525
github.com/kong/kubernetes-testing-framework v0.31.0
2626
github.com/lithammer/dedent v1.1.0
2727
github.com/miekg/dns v1.1.54
@@ -65,6 +65,7 @@ require (
6565
go.uber.org/atomic v1.10.0 // indirect
6666
go.uber.org/zap v1.24.0 // indirect
6767
golang.org/x/net v0.10.0 // indirect
68+
k8s.io/klog/v2 v2.100.1 // indirect
6869
)
6970

7071
require (
@@ -187,7 +188,6 @@ require (
187188
gopkg.in/yaml.v2 v2.4.0 // indirect
188189
gopkg.in/yaml.v3 v3.0.1 // indirect
189190
k8s.io/cli-runtime v0.27.2 // indirect
190-
k8s.io/klog/v2 v2.100.1 // indirect
191191
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
192192
k8s.io/kubectl v0.27.2 // indirect
193193
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,8 @@ github.com/kong/deck v1.20.0 h1:q8+8VBnvv0O+9mYjcPdJP5prG3KzbvR4XfePwkTx+Zc=
250250
github.com/kong/deck v1.20.0/go.mod h1:yJWEu6/xnYiaNBg2vP4EsYLtbt33J67Zsolye3JpJmI=
251251
github.com/kong/go-kong v0.42.0 h1:N0Rth32eGq6S5x33Txu+Gv9ZJ3gG5noffDjqezwutfA=
252252
github.com/kong/go-kong v0.42.0/go.mod h1:YUq7A3gcwk+9Z1ajwzVY2HnSyL/IKq/TJHsJDqT8hJM=
253-
github.com/kong/kubernetes-telemetry v0.0.4 h1:6iDDocM4b/pIKJ/KrSSoQjvyaHBIBtBb4U9LdOqg8Js=
254-
github.com/kong/kubernetes-telemetry v0.0.4/go.mod h1:xopN/XY+5xCXoY8kfnjHf83yT6n4ezVcWKJxA7gmJUw=
253+
github.com/kong/kubernetes-telemetry v0.0.5 h1:FCJx1ShFXbqNb2K6N9FE3MZKwCkp8CEVAJuej5+1S9U=
254+
github.com/kong/kubernetes-telemetry v0.0.5/go.mod h1:FrAXjZHEPSAEL4aUXnNOpPoRiA68VJvwgN8dfG/qF60=
255255
github.com/kong/kubernetes-testing-framework v0.31.0 h1:3MTlUeiD/jV3ArdZWfRLidi7kchg19HI222dXQHwasw=
256256
github.com/kong/kubernetes-testing-framework v0.31.0/go.mod h1:RKFMHJCDByNnHiw+hRLwR26eIZRgd5ImhwYjwK+yUQg=
257257
github.com/kong/semver/v4 v4.0.1 h1:DIcNR8W3gfx0KabFBADPalxxsp+q/5COwIFkkhrFQ2Y=

0 commit comments

Comments
 (0)