forked from pajenterprisesllc/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
225 lines (219 loc) · 11.4 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
module github.com/DataDog/datadog-agent
go 1.14
// Internal deps fix version
replace (
github.com/cihub/seelog => github.com/cihub/seelog v0.0.0-20151216151435-d2c6e5aa9fbf // v2.6
github.com/containerd/cgroups => github.com/containerd/cgroups v0.0.0-20200327175542-b44481373989
github.com/containerd/containerd => github.com/containerd/containerd v1.2.13
github.com/coreos/go-systemd => github.com/coreos/go-systemd v0.0.0-20180202092358-40e2722dffea
github.com/docker/distribution => github.com/docker/distribution v2.7.1-0.20190104202606-0ac367fd6bee+incompatible
github.com/florianl/go-conntrack => github.com/florianl/go-conntrack v0.2.0
github.com/iovisor/gobpf => github.com/DataDog/gobpf v0.0.0-20210226135525-f2a1beabb116
github.com/lxn/walk => github.com/lxn/walk v0.0.0-20180521183810-02935bac0ab8
github.com/mholt/archiver => github.com/mholt/archiver v2.0.1-0.20171012052341-26cf5bb32d07+incompatible
github.com/prometheus/client_golang => github.com/prometheus/client_golang v0.9.2
github.com/spf13/cast => github.com/DataDog/cast v1.3.1-0.20190301154711-1ee8c8bd14a3
github.com/spf13/viper => github.com/DataDog/viper v1.8.0
github.com/ugorji/go => github.com/ugorji/go v1.1.7
)
// pinned to grpc v1.26.0
replace (
github.com/grpc-ecosystem/grpc-gateway => github.com/grpc-ecosystem/grpc-gateway v1.12.2
google.golang.org/grpc => github.com/grpc/grpc-go v1.26.0
)
require (
code.cloudfoundry.org/bbs v0.0.0-20200403215808-d7bc971db0db
code.cloudfoundry.org/cfhttp/v2 v2.0.0 // indirect
code.cloudfoundry.org/clock v1.0.0 // indirect
code.cloudfoundry.org/consuladapter v0.0.0-20200131002136-ac1daf48ba97 // indirect
code.cloudfoundry.org/diego-logging-client v0.0.0-20200130234554-60ef08820a45 // indirect
code.cloudfoundry.org/executor v0.0.0-20200218194701-024d0bdd52d4 // indirect
code.cloudfoundry.org/garden v0.0.0-20200224155059-061eda450ad9
code.cloudfoundry.org/go-diodes v0.0.0-20190809170250-f77fb823c7ee // indirect
code.cloudfoundry.org/go-loggregator v7.4.0+incompatible // indirect
code.cloudfoundry.org/lager v2.0.0+incompatible
code.cloudfoundry.org/locket v0.0.0-20200131001124-67fd0a0fdf2d // indirect
code.cloudfoundry.org/rep v0.0.0-20200325195957-1404b978e31e // indirect
code.cloudfoundry.org/rfc5424 v0.0.0-20180905210152-236a6d29298a // indirect
code.cloudfoundry.org/tlsconfig v0.0.0-20200131000646-bbe0f8da39b3 // indirect
github.com/DataDog/agent-payload v4.59.0+incompatible
github.com/DataDog/datadog-go v4.4.0+incompatible
github.com/DataDog/datadog-operator v0.3.1
github.com/DataDog/ebpf v0.0.0-20210301225224-1e8911b1b835
github.com/DataDog/gohai v0.0.0-20210303102637-6b668acb50dd
github.com/DataDog/gopsutil v0.0.0-20200624212600-1b53412ef321
github.com/DataDog/mmh3 v0.0.0-20200316233529-f5b682d8c981 // indirect
github.com/DataDog/sketches-go v1.0.0
github.com/DataDog/watermarkpodautoscaler v0.2.1-0.20210209165213-28eb1cc35a8d
github.com/DataDog/zstd v0.0.0-20160706220725-2bf71ec48360
github.com/Masterminds/semver v1.5.0
github.com/Masterminds/sprig v2.22.0+incompatible
github.com/Microsoft/go-winio v0.4.15
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect
github.com/alecthomas/participle v0.4.4
github.com/alecthomas/repr v0.0.0-20181024024818-d37bc2a10ba1
github.com/avast/retry-go v2.7.0+incompatible
github.com/aws/aws-sdk-go v1.30.5
github.com/beevik/ntp v0.3.0
github.com/benesch/cgosymbolizer v0.0.0-20190515212042-bec6fe6e597b
github.com/bhmj/jsonslice v0.0.0-20200323023432-92c3edaad8e2
github.com/blabber/go-freebsd-sysctl v0.0.0-20201130114544-503969f39d8f
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575
github.com/clbanning/mxj v1.8.4
github.com/client9/misspell v0.3.4
github.com/cloudfoundry-community/go-cfclient v0.0.0-20201123235753-4f46d6348a05
github.com/cobaugh/osrelease v0.0.0-20181218015638-a93a0a55a249
github.com/containerd/cgroups v0.0.0-20190919134610-bf292b21730f
github.com/containerd/containerd v1.3.2
github.com/containerd/fifo v0.0.0-20191213151349-ff969a566b00 // indirect
github.com/containerd/typeurl v1.0.0
github.com/coreos/go-semver v0.3.0
github.com/coreos/go-systemd v0.0.0-20190620071333-e64a0ec8b42a
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
github.com/davecgh/go-spew v1.1.1
github.com/dgraph-io/ristretto v0.0.3
github.com/docker/docker v17.12.0-ce-rc1.0.20200309214505-aa6a9891b09c+incompatible
github.com/docker/go-connections v0.4.0
github.com/dustin/go-humanize v1.0.0
github.com/elastic/go-libaudit v0.4.0
github.com/emicklei/go-restful-swagger12 v0.0.0-20170926063155-7524189396c6 // indirect
github.com/fatih/color v1.9.0
github.com/florianl/go-conntrack v0.1.1-0.20191002182014-06743d3a59db
github.com/frapposelli/wwhrd v0.2.4
github.com/freddierice/go-losetup v0.0.0-20170407175016-fc9adea44124
github.com/fzipp/gocyclo v0.3.1
github.com/go-ini/ini v1.55.0
github.com/go-ole/go-ole v1.2.5
github.com/go-openapi/spec v0.19.8 // indirect
github.com/go-test/deep v1.0.5 // indirect
github.com/gobwas/glob v0.2.3
github.com/godbus/dbus v4.1.0+incompatible
github.com/gogo/googleapis v1.3.2 // indirect
github.com/gogo/protobuf v1.3.1
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e
github.com/golang/mock v1.4.4
github.com/golang/protobuf v1.4.3
github.com/golangci/golangci-lint v1.27.0
github.com/google/gopacket v1.1.17
github.com/google/pprof v0.0.0-20201117184057-ae444373da19
github.com/gordonklaus/ineffassign v0.0.0-20210103220932-664217a59c00
github.com/gorilla/mux v1.7.4
github.com/gosnmp/gosnmp v1.29.0
github.com/goware/modvendor v0.3.0
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
github.com/grpc-ecosystem/grpc-gateway v1.14.1
github.com/hashicorp/consul/api v1.4.0
github.com/hashicorp/go-multierror v1.1.0
github.com/hashicorp/golang-lru v0.5.4
github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95
github.com/ianlancetaylor/cgosymbolizer v0.0.0-20201204192058-7acc97e53614 // indirect
github.com/iovisor/gobpf v0.0.0
github.com/itchyny/gojq v0.10.2
github.com/json-iterator/go v1.1.10
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/kubernetes-incubator/custom-metrics-apiserver v0.0.0-20190918110929-3d9be26a50eb // Pinned to kubernetes-1.16.2
github.com/lxn/walk v0.0.0-20191128110447-55ccb3a9f5c1
github.com/lxn/win v0.0.0-20191128105842-2da648fda5b4
github.com/mailru/easyjson v0.7.6
github.com/mdlayher/netlink v1.1.0
github.com/mholt/archiver v3.1.1+incompatible
github.com/mholt/archiver/v3 v3.5.0
github.com/miekg/dns v1.1.31
github.com/moby/sys/mountinfo v0.4.0
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/olekukonko/tablewriter v0.0.2
github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852 // indirect
github.com/opencontainers/runc v1.0.0-rc2.0.20190611121236-6cc515888830 // indirect
github.com/opencontainers/runtime-spec v1.0.2
github.com/openshift/api v3.9.1-0.20190924102528-32369d4db2ad+incompatible
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/philhofer/fwd v1.0.0 // indirect
github.com/pierrec/lz4 v2.5.0+incompatible // indirect
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.5.1
github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da
github.com/shirou/gopsutil v3.21.2+incompatible
github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4
github.com/shuLhan/go-bindata v3.6.1+incompatible
github.com/sirupsen/logrus v1.7.0 // indirect
github.com/soniah/gosnmp v1.26.0
github.com/spf13/afero v1.2.2
github.com/spf13/cobra v1.0.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.6.2
github.com/stretchr/testify v1.6.1
github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2
github.com/tedsuo/ifrit v0.0.0-20191009134036-9a97d0632f00 // indirect
github.com/tinylib/msgp v1.1.2
github.com/tklauser/go-sysconf v0.3.4 // indirect
github.com/twmb/murmur3 v1.1.3
github.com/urfave/negroni v1.0.0
github.com/vishvananda/netlink v1.1.1-0.20201206203632-88079d98e65d
github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae
github.com/vito/go-sse v1.0.0 // indirect
github.com/vmihailenco/msgpack/v4 v4.3.11
github.com/zorkian/go-datadog-api v2.28.0+incompatible // indirect
go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738
go.uber.org/automaxprocs v1.2.0
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9 // indirect
golang.org/x/lint v0.0.0-20200302205851-738671d3881b
golang.org/x/mobile v0.0.0-20201217150744-e6ae53a27f4f
golang.org/x/mod v0.3.1-0.20200828183125-ce943fd02449 // indirect
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
golang.org/x/perf v0.0.0-20200918155509-d949658356f9
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
golang.org/x/sys v0.0.0-20210303074136-134d130e1a04
golang.org/x/text v0.3.4
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
golang.org/x/tools v0.0.0-20210114065538-d78b04bdf963
gomodules.xyz/jsonpatch/v3 v3.0.1
google.golang.org/genproto v0.0.0-20200825200019-8632dd797987
google.golang.org/grpc v1.31.0
gopkg.in/DataDog/dd-trace-go.v1 v1.23.1
gopkg.in/Knetic/govaluate.v3 v3.0.0 // indirect
gopkg.in/ini.v1 v1.55.0 // indirect
gopkg.in/yaml.v2 v2.3.0
gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c
gopkg.in/zorkian/go-datadog-api.v2 v2.29.0
gotest.tools v2.2.0+incompatible
gotest.tools/gotestsum v0.5.3
honnef.co/go/tools v0.0.1-2020.1.5
k8s.io/api v0.18.6
k8s.io/apimachinery v0.18.6
k8s.io/autoscaler/vertical-pod-autoscaler v0.9.2
k8s.io/client-go v12.0.0+incompatible
k8s.io/cri-api v0.0.0
k8s.io/klog v1.0.1-0.20200310124935-4ad0115ba9e4 // Min version that includes fix for Windows Nano
k8s.io/kube-state-metrics v1.8.1-0.20200108124505-369470d6ead8
k8s.io/kubernetes v1.18.2
k8s.io/metrics v0.18.3
)
// Pinned to kubernetes-1.16.2
replace github.com/kubernetes-incubator/custom-metrics-apiserver => github.com/kubernetes-incubator/custom-metrics-apiserver v0.0.0-20200618121405-54026617ec44
// Pinned to kubernetes-1.16.2
replace (
k8s.io/api => k8s.io/api v0.18.2
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.18.2
k8s.io/apimachinery => k8s.io/apimachinery v0.18.6
k8s.io/apiserver => k8s.io/apiserver v0.18.2
k8s.io/autoscaler => k8s.io/autoscaler v0.18.2
k8s.io/cli-runtime => k8s.io/cli-runtime v0.18.2
k8s.io/client-go => k8s.io/client-go v0.18.6
k8s.io/cloud-provider => k8s.io/cloud-provider v0.0.0-20191016115326-20453efc2458
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.18.2
k8s.io/code-generator => k8s.io/code-generator v0.18.2
k8s.io/component-base => k8s.io/component-base v0.18.2
k8s.io/cri-api => k8s.io/cri-api v0.0.0-20190828162817-608eb1dad4ac
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.18.2
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.18.2
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.0.0-20191016114939-2b2b218dc1df
k8s.io/kube-proxy => k8s.io/kube-proxy v0.0.0-20191016114407-2e83b6f20229
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.0.0-20191016114748-65049c67a58b
k8s.io/kube-state-metrics => k8s.io/kube-state-metrics v1.9.8-0.20200729235434-0ff5482079c8
k8s.io/kubectl => k8s.io/kubectl v0.0.0-20191016120415-2ed914427d51
k8s.io/kubelet => k8s.io/kubelet v0.0.0-20191016114556-7841ed97f1b2
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.0.0-20191016115753-cf0698c3a16b
k8s.io/metrics => k8s.io/metrics v0.18.2
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.0.0-20191016112829-06bb3c9d77c9
)