Skip to content

Commit d88ee54

Browse files
authored
Add qlog tracer (#1133)
1 parent a0280ad commit d88ee54

File tree

5 files changed

+207
-3
lines changed

5 files changed

+207
-3
lines changed

.golangci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ linters-settings:
9999
- "k8s.io/client-go/kubernetes"
100100
- "k8s.io/client-go/rest"
101101
- "k8s.io/client-go/tools/remotecommand"
102+
- "github.com/quic-go/quic-go"
103+
- "github.com/quic-go/quic-go/logging"
102104

103105
issues:
104106
# Dont commit the following line.

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ require (
3535
require (
3636
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3737
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
38+
github.com/francoispqt/gojay v1.2.13 // indirect
3839
github.com/go-logr/logr v1.4.1 // indirect
3940
github.com/go-openapi/jsonpointer v0.19.6 // indirect
4041
github.com/go-openapi/jsonreference v0.20.2 // indirect
@@ -73,7 +74,7 @@ require (
7374
go.uber.org/atomic v1.9.0 // indirect
7475
go.uber.org/multierr v1.9.0 // indirect
7576
golang.org/x/crypto v0.26.0 // indirect
76-
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect
77+
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
7778
golang.org/x/mod v0.17.0 // indirect
7879
golang.org/x/oauth2 v0.18.0 // indirect
7980
golang.org/x/term v0.23.0 // indirect

0 commit comments

Comments
 (0)