forked from martin-helmich/prometheus-nginxlog-exporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
23 lines (21 loc) · 860 Bytes
/
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
module github.com/martin-helmich/prometheus-nginxlog-exporter
require (
github.com/armon/go-metrics v0.3.4 // 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.9.0
github.com/satyrius/gonx v1.3.1-0.20180709120835-47c52b995fe5
github.com/stretchr/testify v1.7.0
github.com/tidwall/gjson v1.8.1
gopkg.in/mcuadros/go-syslog.v2 v2.3.0
gopkg.in/yaml.v2 v2.4.0
)
go 1.13