You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
223 B
Go

package metrics
import (
"net/http"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
// Handler returns a standard Prometheus metrics HTTP handler.
func Handler() http.Handler {
return promhttp.Handler()
}