f1d5d0ad4d
When Postfix is running in a Docker container, it's most useful to use the built-in Docker logging (as with Systemd). Setting `--docker.enable` allows that. The log source is using `client.NewEnvClient`, which reads environment variables to determine which Docker to connect to, and how TLS is handled.
23 lines
851 B
Modula-2
23 lines
851 B
Modula-2
module github.com/kumina/postfix_exporter
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/alecthomas/kingpin v2.2.6+incompatible
|
|
github.com/coreos/go-systemd/v22 v22.0.0
|
|
github.com/docker/distribution v2.7.1+incompatible // indirect
|
|
github.com/docker/docker v1.13.1
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
|
github.com/docker/go-units v0.4.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.4.7 // indirect
|
|
github.com/hpcloud/tail v1.0.0
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/prometheus/client_golang v1.4.1
|
|
github.com/prometheus/client_model v0.2.0
|
|
github.com/stretchr/testify v1.4.0
|
|
gopkg.in/fsnotify.v1 v1.4.7 // indirect
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
)
|