27 lines
929 B
Go
27 lines
929 B
Go
package config
|
|
|
|
type Graylog struct {
|
|
Host string `mapstructure:"GRAYLOG_HOST" yaml:"host" env:"GRAYLOG_HOST" env-default:"localhost"`
|
|
Port string `mapstructure:"GRAYLOG_PORT" yaml:"port" env:"GRAYLOG_PORT" env-default:"12201"`
|
|
}
|
|
|
|
type FileLog struct {
|
|
Path string `mapstructure:"LOG_PATH" yaml:"path" env-default:"storage/logs"`
|
|
TimeFormat string `mapstructure:"LOG_TIME_FORMAT" yaml:"timeformat" env-default:"2006-01-02"`
|
|
}
|
|
|
|
type ConsoleLog struct {
|
|
Level string `mapstructure:"CONSOLE_LOG_LEVEL" yaml:"level" env-default:"info"`
|
|
Show bool `mapstructure:"CONSOLE_LOG_SHOW" yaml:"show" env-default:"false"`
|
|
}
|
|
|
|
type LogConfig struct {
|
|
TimeField string `yaml:"timefield"`
|
|
TimeFormat string `yaml:"timeformat"`
|
|
ConsoleLog ConsoleLog `yaml:"console"`
|
|
Monitor Graylog `yaml:"monitor"`
|
|
InfoLevel FileLog `yaml:"info"`
|
|
WarnLevel FileLog `yaml:"warn"`
|
|
ErrorLevel FileLog `yaml:"error"`
|
|
}
|