Implement an API for performance monitoring

Signed-off-by: Alexei Dodon <adodon@cisco.com>
This commit is contained in:
Alexei Dodon
2021-10-15 18:05:00 +03:00
committed by Ramkumar Chinchani
parent 061dfb333b
commit 8e4d828867
54 changed files with 27267 additions and 196 deletions
+21
View File
@@ -0,0 +1,21 @@
// +build minimal
package api
import (
"github.com/anuvu/zot/pkg/log"
)
type Controller struct {
Config *Config
Log log.Logger
}
func NewController(cfg *Config) *Controller {
logger := log.NewLogger(cfg.Exporter.Log.Level, cfg.Exporter.Log.Output)
return &Controller{Config: cfg, Log: logger}
}
func (c *Controller) Run() {
runExporter(c)
}