├── .travis.yml ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── handler.go ├── handler_test.go ├── metrics.go ├── setup.go └── setup_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/go.sum -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/handler.go -------------------------------------------------------------------------------- /handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/handler_test.go -------------------------------------------------------------------------------- /metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/metrics.go -------------------------------------------------------------------------------- /setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/setup.go -------------------------------------------------------------------------------- /setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miekg/caddy-prometheus/HEAD/setup_test.go --------------------------------------------------------------------------------