gatus/config/config.go

48 lines
868 B
Go
Raw Normal View History

2019-09-06 06:01:48 +02:00
package config
import (
2019-09-07 02:25:31 +02:00
"github.com/TwinProduction/gatus/core"
2019-09-06 06:01:48 +02:00
"gopkg.in/yaml.v2"
"io/ioutil"
"time"
2019-09-06 06:01:48 +02:00
)
type Config struct {
2019-09-07 02:25:31 +02:00
Services []*core.Service `yaml:"services"`
2019-09-06 06:01:48 +02:00
}
var config *Config
func Get() *Config {
if config == nil {
2019-10-20 03:39:31 +02:00
cfg, err := readConfigurationFile("config.yaml")
if err != nil {
panic(err)
}
config = cfg
2019-09-06 06:01:48 +02:00
}
return config
}
2019-10-20 03:39:31 +02:00
func readConfigurationFile(fileName string) (*Config, error) {
if bytes, err := ioutil.ReadFile(fileName); err == nil {
// file exists, so we'll parse it and return it
2019-10-20 03:42:03 +02:00
return parseConfigBytes(bytes)
2019-09-06 06:01:48 +02:00
} else {
2019-10-20 03:39:31 +02:00
return nil, err
2019-09-06 06:01:48 +02:00
}
}
2019-10-20 03:42:03 +02:00
func parseConfigBytes(yamlBytes []byte) (config *Config, err error) {
err = yaml.Unmarshal(yamlBytes, &config)
if err != nil {
return
}
2019-09-07 02:25:31 +02:00
for _, service := range config.Services {
if service.Interval == 0 {
service.Interval = 10 * time.Second
2019-09-07 02:25:31 +02:00
}
}
2019-10-20 03:42:03 +02:00
return
2019-09-06 06:01:48 +02:00
}