mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
ce4924f841
Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
79 lines
1.9 KiB
Go
79 lines
1.9 KiB
Go
//go:build !metrics
|
|
// +build !metrics
|
|
|
|
package cli
|
|
|
|
import (
|
|
"github.com/mitchellh/mapstructure"
|
|
"github.com/rs/zerolog/log"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
|
|
zerr "zotregistry.dev/zot/errors"
|
|
"zotregistry.dev/zot/pkg/exporter/api"
|
|
)
|
|
|
|
// metadataConfig reports metadata after parsing, which we use to track
|
|
// errors.
|
|
func metadataConfig(md *mapstructure.Metadata) viper.DecoderConfigOption {
|
|
return func(c *mapstructure.DecoderConfig) {
|
|
c.Metadata = md
|
|
}
|
|
}
|
|
|
|
func NewExporterCmd() *cobra.Command {
|
|
config := api.DefaultConfig()
|
|
|
|
// "config"
|
|
configCmd := &cobra.Command{
|
|
Use: "config <config_file>",
|
|
Aliases: []string{"config"},
|
|
Short: "`config` node exporter properties",
|
|
Long: "`config` node exporter properties",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if len(args) > 0 {
|
|
loadConfiguration(config, args[0])
|
|
}
|
|
|
|
c := api.NewController(config)
|
|
c.Run()
|
|
},
|
|
}
|
|
|
|
// "node_exporter"
|
|
exporterCmd := &cobra.Command{
|
|
Use: "zxp",
|
|
Short: "`zxp`",
|
|
Long: "`zxp`",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
_ = cmd.Usage()
|
|
cmd.SilenceErrors = false
|
|
},
|
|
}
|
|
|
|
exporterCmd.AddCommand(configCmd)
|
|
|
|
return exporterCmd
|
|
}
|
|
|
|
func loadConfiguration(config *api.Config, configPath string) {
|
|
viper.SetConfigFile(configPath)
|
|
|
|
if err := viper.ReadInConfig(); err != nil {
|
|
log.Panic().Err(err).Str("config", configPath).Msg("failed to read configuration")
|
|
}
|
|
|
|
metaData := &mapstructure.Metadata{}
|
|
if err := viper.Unmarshal(&config, metadataConfig(metaData)); err != nil {
|
|
log.Panic().Err(err).Str("config", configPath).Msg("failed to unmarshal config")
|
|
}
|
|
|
|
if len(metaData.Keys) == 0 {
|
|
log.Panic().Err(zerr.ErrBadConfig).Str("config", configPath).Msg("bad configuration")
|
|
}
|
|
|
|
if len(metaData.Unused) > 0 {
|
|
log.Panic().Err(zerr.ErrBadConfig).Interface("unknown fields", metaData.Unused).
|
|
Str("config", configPath).Msg("bad configuration")
|
|
}
|
|
}
|