1
0
Fork 0
mirror of https://github.com/TwiN/gatus.git synced 2024-12-14 11:58:04 +00:00
twin-gatus/config/config.go

45 lines
813 B
Go
Raw Normal View History

2019-09-06 04:01:48 +00:00
package config
import (
2019-09-07 00:25:31 +00:00
"github.com/TwinProduction/gatus/core"
2019-09-06 04:01:48 +00:00
"gopkg.in/yaml.v2"
"io/ioutil"
)
type Config struct {
2019-09-07 00:25:31 +00:00
Services []*core.Service `yaml:"services"`
2019-09-06 04:01:48 +00:00
}
var config *Config
func Get() *Config {
if config == nil {
ReadConfigurationFile("config.yaml")
}
return config
}
func ReadConfigurationFile(fileName string) *Config {
config = &Config{}
if bytes, err := ioutil.ReadFile(fileName); err == nil { // file exists
return ParseConfigBytes(bytes)
} else {
panic(err)
}
return config
}
func ParseConfigBytes(yamlBytes []byte) *Config {
config = &Config{}
yaml.Unmarshal(yamlBytes, config)
2019-09-07 00:25:31 +00:00
for _, service := range config.Services {
if service.FailureThreshold == 0 {
service.FailureThreshold = 1
}
if service.Interval == 0 {
service.Interval = 10
}
}
2019-09-06 04:01:48 +00:00
return config
}