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>
35 lines
968 B
Go
35 lines
968 B
Go
//go:build !metrics
|
|
// +build !metrics
|
|
|
|
package extensions
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
zcommon "zotregistry.io/zot/pkg/common"
|
|
"zotregistry.io/zot/pkg/extensions/monitoring"
|
|
"zotregistry.io/zot/pkg/log"
|
|
)
|
|
|
|
// EnableMetricsExtension ...
|
|
func EnableMetricsExtension(config *config.Config, log log.Logger, rootDir string) {
|
|
log.Warn().Msg("skipping enabling metrics extension because given zot binary doesn't include this feature," +
|
|
"please build a binary that does so")
|
|
}
|
|
|
|
// SetupMetricsRoutes ...
|
|
func SetupMetricsRoutes(conf *config.Config, router *mux.Router,
|
|
authnFunc, authzFunc mux.MiddlewareFunc, log log.Logger, metrics monitoring.MetricServer,
|
|
) {
|
|
getMetrics := func(w http.ResponseWriter, r *http.Request) {
|
|
m := metrics.ReceiveMetrics()
|
|
zcommon.WriteJSON(w, http.StatusOK, m)
|
|
}
|
|
|
|
router.Use(authnFunc)
|
|
router.Use(authzFunc)
|
|
router.HandleFunc("/metrics", getMetrics).Methods("GET")
|
|
}
|