mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
a345ba0823
Signed-off-by: Alexei Dodon <adodon@cisco.com>
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
//go:build metrics
|
|
// +build metrics
|
|
|
|
package extensions
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
"zotregistry.io/zot/pkg/extensions/monitoring"
|
|
"zotregistry.io/zot/pkg/log"
|
|
)
|
|
|
|
func EnableMetricsExtension(config *config.Config, log log.Logger, rootDir string) {
|
|
if config.IsMetricsEnabled() &&
|
|
config.Extensions.Metrics.Prometheus != nil {
|
|
if config.Extensions.Metrics.Prometheus.Path == "" {
|
|
config.Extensions.Metrics.Prometheus.Path = "/metrics"
|
|
|
|
log.Warn().Msg("Prometheus instrumentation Path not set, changing to '/metrics'.")
|
|
}
|
|
} else {
|
|
log.Info().Msg("Metrics config not provided, skipping Metrics config update")
|
|
}
|
|
}
|
|
|
|
func SetupMetricsRoutes(config *config.Config, router *mux.Router,
|
|
authnFunc, authzFunc mux.MiddlewareFunc, log log.Logger, metrics monitoring.MetricServer,
|
|
) {
|
|
log.Info().Msg("setting up metrics routes")
|
|
|
|
if config.IsMetricsEnabled() {
|
|
extRouter := router.PathPrefix(config.Extensions.Metrics.Prometheus.Path).Subrouter()
|
|
extRouter.Use(authnFunc)
|
|
extRouter.Use(authzFunc)
|
|
extRouter.Methods("GET").Handler(promhttp.Handler())
|
|
}
|
|
}
|