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.
28 lines
527 B
Go
28 lines
527 B
Go
4 years ago
|
package metrics
|
||
|
|
||
|
import (
|
||
|
"github.com/containrrr/watchtower/pkg/metrics"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
||
|
)
|
||
|
|
||
|
// Handler is an HTTP handle for serving metric data
|
||
|
type Handler struct {
|
||
|
Path string
|
||
|
Handle http.HandlerFunc
|
||
|
Metrics *metrics.Metrics
|
||
|
}
|
||
|
|
||
|
// New is a factory function creating a new Metrics instance
|
||
|
func New() *Handler {
|
||
|
m := metrics.Default()
|
||
|
handler := promhttp.Handler()
|
||
|
|
||
|
return &Handler{
|
||
|
Path: "/v1/metrics",
|
||
|
Handle: handler.ServeHTTP,
|
||
|
Metrics: m,
|
||
|
}
|
||
|
}
|