k3s/vendor/github.com/docker/go-metrics/handler.go

14 lines
259 B
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
package metrics
import (
"net/http"
"github.com/prometheus/client_golang/prometheus"
)
// Handler returns the global http.Handler that provides the prometheus
// metrics format on GET requests
func Handler() http.Handler {
return prometheus.Handler()
}