-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroot.go
More file actions
72 lines (60 loc) · 1.63 KB
/
root.go
File metadata and controls
72 lines (60 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package cmd
import (
"os"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/rs/zerolog/pkgerrors"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
var (
cfgFile string
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "monitoring-dash",
Short: "Monitoring dashboard client",
Run: func(cmd *cobra.Command, args []string) {
if os.Getenv("DEV") == "true" {
cmd.SetArgs([]string{"ui"})
cmd.Execute()
return
}
cmd.SetArgs([]string{"-h"})
cmd.Execute()
},
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main().
func Execute() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}
func init() {
zerolog.TimeFieldFormat = zerolog.TimeFormatUnix
zerolog.ErrorStackMarshaler = pkgerrors.MarshalStack
cobra.OnInitialize(initConfig)
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.monitoring-dash.yaml)")
rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
// initConfig reads in config file and ENV variables if set.
func initConfig() {
if cfgFile != "" {
// Use config file from the flag.
viper.SetConfigFile(cfgFile)
} else {
home, err := os.UserHomeDir()
if err != nil {
log.Fatal().Err(err).Msg("failed to get user home directory")
}
viper.AddConfigPath(home)
viper.SetConfigType("yaml")
viper.SetConfigName(".monitoring-dash")
}
viper.AutomaticEnv()
if err := viper.ReadInConfig(); err == nil {
log.Info().Str("config_file", viper.ConfigFileUsed()).Msg("using config file")
}
}