forked from martin-helmich/prometheus-nginxlog-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
26 lines (24 loc) · 1 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
module github.com/martin-helmich/prometheus-nginxlog-exporter
require (
github.com/armon/go-metrics v0.3.4 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/google/btree v1.0.0 // indirect
github.com/hashicorp/consul/api v1.8.1
github.com/hashicorp/go-immutable-radix v1.2.0 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/hcl v1.0.0
github.com/hpcloud/tail v1.0.0
github.com/mitchellh/go-testing-interface v1.14.0 // indirect
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/prometheus/client_golang v1.8.0
github.com/satyrius/gonx v1.3.1-0.20180709120835-47c52b995fe5
github.com/stretchr/testify v1.6.1
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.4.0
)
go 1.13