forked from cloudflare/ebpf_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
21 lines (18 loc) · 858 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/cloudflare/ebpf_exporter
require (
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/iovisor/gobpf v0.0.0-20191212083149-cf081d8fe357
github.com/kr/pretty v0.1.0 // indirect
github.com/prometheus/client_golang v1.2.1
github.com/prometheus/client_model v0.0.0-20191202183732-d1d2010b5bee // indirect
github.com/prometheus/common v0.7.0
github.com/prometheus/procfs v0.0.8 // indirect
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.2.7
)
// TODO: remove after https://github.com/iovisor/gobpf/pull/219 is merged
replace github.com/iovisor/gobpf => github.com/bobrik/gobpf v0.0.0-20191216233538-2cb7f18398d8
go 1.13