forked from martin-helmich/prometheus-nginxlog-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
30 lines (28 loc) · 1.43 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
module github.com/martin-helmich/prometheus-nginxlog-exporter
require (
github.com/armon/go-radix v1.0.0 // indirect
github.com/beorn7/perks v0.0.0-20160229213445-3ac7bf7a47d1 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/golang/protobuf v0.0.0-20160614223140-0c1f6d65b5a1 // indirect
github.com/hashicorp/consul v0.0.0-20150921174127-de080672fee9
github.com/hashicorp/go-msgpack v0.5.3 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/hashicorp/hcl v1.0.0
github.com/hpcloud/tail v1.0.0
github.com/kr/pretty v0.1.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/prometheus/client_golang v0.0.0-20160916180340-5636dc67ae77
github.com/prometheus/client_model v0.0.0-20150212101744-fa8ad6fec335 // indirect
github.com/prometheus/common v0.0.0-20160623151427-4402f4e5ea79 // indirect
github.com/prometheus/procfs v0.0.0-20160411190841-abf152e5f3e9 // indirect
github.com/satyrius/gonx v1.3.1-0.20180709120835-47c52b995fe5
github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff // indirect
github.com/stretchr/testify v1.4.0
golang.org/x/sys v0.0.0-20161023150541-c200b10b5d5e // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/mcuadros/go-syslog.v2 v2.3.0
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.2.7
)
go 1.13