mirror of
https://github.com/prometheus/statsd_exporter.git
synced 2024-11-14 19:31:11 +00:00
23ef5daeac
This is more portable (works on any system that has UNIX signals) and removes the dependency on fsnotify, which doesn't compile on AIX. It also reduces the probability of failed reloads due to partial writes. Fixes #241. Signed-off-by: Matthias Rampke <mr@soundcloud.com>
12 lines
421 B
Modula-2
12 lines
421 B
Modula-2
module github.com/prometheus/statsd_exporter
|
|
|
|
require (
|
|
github.com/hashicorp/golang-lru v0.5.1
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/prometheus/client_golang v1.0.0
|
|
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
|
|
github.com/prometheus/common v0.4.1
|
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
|
gopkg.in/yaml.v2 v2.2.1
|
|
)
|