File tree Expand file tree Collapse file tree 7 files changed +466
-3
lines changed
github.com/euank/go-kmsg-parser/v2 Expand file tree Collapse file tree 7 files changed +466
-3
lines changed Original file line number Diff line number Diff line change 1
1
module github.com/sapcc/kubernetes-oomkill-exporter
2
2
3
- go 1.23
3
+ go 1.23.1
4
4
5
5
require (
6
6
github.com/containerd/containerd v1.7.24
7
- github.com/euank/go-kmsg-parser v2.0.0+incompatible
7
+ github.com/euank/go-kmsg-parser/v2 v2.1.0
8
8
github.com/golang/glog v1.2.3
9
9
github.com/prometheus/client_golang v1.20.5
10
10
github.com/stretchr/testify v1.10.0
@@ -33,6 +33,7 @@ require (
33
33
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
34
34
github.com/distribution/reference v0.6.0 // indirect
35
35
github.com/docker/go-events v0.0.0-20241114183025-9940093291f5 // indirect
36
+ github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect
36
37
github.com/felixge/httpsnoop v1.0.4 // indirect
37
38
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
38
39
github.com/go-logr/logr v1.4.2 // indirect
Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m
53
53
github.com/envoyproxy/protoc-gen-validate v0.1.0 /go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c =
54
54
github.com/euank/go-kmsg-parser v2.0.0+incompatible h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY =
55
55
github.com/euank/go-kmsg-parser v2.0.0+incompatible /go.mod h1:MhmAMZ8V4CYH4ybgdRwPr2TU5ThnS43puaKEMpja1uw =
56
+ github.com/euank/go-kmsg-parser/v2 v2.1.0 h1:G3QuOjQgrC1lNUgArlLLnvq/8S9kksQW/fk26LfPDew =
57
+ github.com/euank/go-kmsg-parser/v2 v2.1.0 /go.mod h1:829LX1BxwHvmThOJ2AIy+b42Ku7VdX7lgVQFwmo5zdY =
56
58
github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg =
57
59
github.com/felixge/httpsnoop v1.0.4 /go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U =
58
60
github.com/fxamacker/cbor/v2 v2.7.0 h1:iM5WgngdRBanHcxugY4JySA0nk1wZorNOpTgCMedv5E =
@@ -172,6 +174,7 @@ github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An
172
174
github.com/stretchr/objx v0.1.0 /go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME =
173
175
github.com/stretchr/objx v0.4.0 /go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw =
174
176
github.com/stretchr/objx v0.5.0 /go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo =
177
+ github.com/stretchr/testify v1.2.2 /go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs =
175
178
github.com/stretchr/testify v1.3.0 /go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI =
176
179
github.com/stretchr/testify v1.7.0 /go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg =
177
180
github.com/stretchr/testify v1.7.1 /go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg =
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import (
20
20
"strings"
21
21
"testing"
22
22
23
- "github.com/euank/go-kmsg-parser/kmsgparser"
23
+ "github.com/euank/go-kmsg-parser/v2/ kmsgparser"
24
24
"github.com/stretchr/testify/require"
25
25
)
26
26
You can’t perform that action at this time.
0 commit comments