Signed-off-by: Alexander Morozov <lk4d4@docker.com> Upstream-commit: f2614f2107c838d014d31b806e3b8a9f1395cb2b Component: engine
14 lines
259 B
Go
14 lines
259 B
Go
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()
|
|
}
|