2022-04-27 01:00:20 -05:00
|
|
|
//go:build !metrics
|
|
|
|
// +build !metrics
|
|
|
|
|
|
|
|
package extensions
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gorilla/mux"
|
2022-10-20 11:39:20 -05:00
|
|
|
|
2022-04-27 01:00:20 -05:00
|
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
|
|
"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,
|
2023-08-02 13:58:34 -05:00
|
|
|
authFunc mux.MiddlewareFunc, log log.Logger,
|
2022-04-27 01:00:20 -05:00
|
|
|
) {
|
|
|
|
log.Warn().Msg("skipping setting up metrics routes because given zot binary doesn't include this feature," +
|
|
|
|
"please build a binary that does so")
|
|
|
|
}
|