mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 16:44:25 +01:00
328 lines
11 KiB
Go
328 lines
11 KiB
Go
package config
|
|
|
|
import (
|
|
"errors"
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/TwinProduction/gatus/alerting"
|
|
"github.com/TwinProduction/gatus/alerting/provider"
|
|
"github.com/TwinProduction/gatus/core"
|
|
"github.com/TwinProduction/gatus/k8s"
|
|
"github.com/TwinProduction/gatus/security"
|
|
"github.com/TwinProduction/gatus/storage"
|
|
"github.com/TwinProduction/gatus/util"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
const (
|
|
// DefaultConfigurationFilePath is the default path that will be used to search for the configuration file
|
|
// if a custom path isn't configured through the GATUS_CONFIG_FILE environment variable
|
|
DefaultConfigurationFilePath = "config/config.yaml"
|
|
|
|
// DefaultFallbackConfigurationFilePath is the default fallback path that will be used to search for the
|
|
// configuration file if DefaultConfigurationFilePath didn't work
|
|
DefaultFallbackConfigurationFilePath = "config/config.yml"
|
|
|
|
// DefaultAddress is the default address the service will bind to
|
|
DefaultAddress = "0.0.0.0"
|
|
|
|
// DefaultPort is the default port the service will listen on
|
|
DefaultPort = 8080
|
|
)
|
|
|
|
var (
|
|
// ErrNoServiceInConfig is an error returned when a configuration file has no services configured
|
|
ErrNoServiceInConfig = errors.New("configuration file should contain at least 1 service")
|
|
|
|
// ErrConfigFileNotFound is an error returned when the configuration file could not be found
|
|
ErrConfigFileNotFound = errors.New("configuration file not found")
|
|
|
|
// ErrConfigNotLoaded is an error returned when an attempt to Get() the configuration before loading it is made
|
|
ErrConfigNotLoaded = errors.New("configuration is nil")
|
|
|
|
// ErrInvalidSecurityConfig is an error returned when the security configuration is invalid
|
|
ErrInvalidSecurityConfig = errors.New("invalid security configuration")
|
|
|
|
config *Config
|
|
)
|
|
|
|
// Config is the main configuration structure
|
|
type Config struct {
|
|
// Debug Whether to enable debug logs
|
|
Debug bool `yaml:"debug"`
|
|
|
|
// Metrics Whether to expose metrics at /metrics
|
|
Metrics bool `yaml:"metrics"`
|
|
|
|
// DisableMonitoringLock Whether to disable the monitoring lock
|
|
// The monitoring lock is what prevents multiple services from being processed at the same time.
|
|
// Disabling this may lead to inaccurate response times
|
|
DisableMonitoringLock bool `yaml:"disable-monitoring-lock"`
|
|
|
|
// Security Configuration for securing access to Gatus
|
|
Security *security.Config `yaml:"security"`
|
|
|
|
// Alerting Configuration for alerting
|
|
Alerting *alerting.Config `yaml:"alerting"`
|
|
|
|
// Services List of services to monitor
|
|
Services []*core.Service `yaml:"services"`
|
|
|
|
// Kubernetes is the Kubernetes configuration
|
|
Kubernetes *k8s.Config `yaml:"kubernetes"`
|
|
|
|
// Storage is the configuration for how the data is stored
|
|
Storage *storage.Config `yaml:"storage"`
|
|
|
|
// Web is the configuration for the web listener
|
|
Web *WebConfig `yaml:"web"`
|
|
}
|
|
|
|
// Get returns the configuration, or panics if the configuration hasn't loaded yet
|
|
func Get() *Config {
|
|
if config == nil {
|
|
panic(ErrConfigNotLoaded)
|
|
}
|
|
return config
|
|
}
|
|
|
|
// Set sets the configuration
|
|
// Used only for testing
|
|
func Set(cfg *Config) {
|
|
config = cfg
|
|
}
|
|
|
|
// Load loads a custom configuration file
|
|
// Note that the misconfiguration of some fields may lead to panics. This is on purpose.
|
|
func Load(configFile string) error {
|
|
log.Printf("[config][Load] Reading configuration from configFile=%s", configFile)
|
|
cfg, err := readConfigurationFile(configFile)
|
|
if err != nil {
|
|
if os.IsNotExist(err) {
|
|
return ErrConfigFileNotFound
|
|
}
|
|
return err
|
|
}
|
|
config = cfg
|
|
return nil
|
|
}
|
|
|
|
// LoadDefaultConfiguration loads the default configuration file
|
|
func LoadDefaultConfiguration() error {
|
|
err := Load(DefaultConfigurationFilePath)
|
|
if err != nil {
|
|
if err == ErrConfigFileNotFound {
|
|
return Load(DefaultFallbackConfigurationFilePath)
|
|
}
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func readConfigurationFile(fileName string) (config *Config, err error) {
|
|
var bytes []byte
|
|
if bytes, err = ioutil.ReadFile(fileName); err == nil {
|
|
// file exists, so we'll parse it and return it
|
|
return parseAndValidateConfigBytes(bytes)
|
|
}
|
|
return
|
|
}
|
|
|
|
func parseAndValidateConfigBytes(yamlBytes []byte) (config *Config, err error) {
|
|
// Expand environment variables
|
|
yamlBytes = []byte(os.ExpandEnv(string(yamlBytes)))
|
|
// Parse configuration file
|
|
err = yaml.Unmarshal(yamlBytes, &config)
|
|
if err != nil {
|
|
return
|
|
}
|
|
// Check if the configuration file at least has services configured or Kubernetes auto discovery enabled
|
|
if config == nil || ((config.Services == nil || len(config.Services) == 0) && (config.Kubernetes == nil || !config.Kubernetes.AutoDiscover)) {
|
|
err = ErrNoServiceInConfig
|
|
} else {
|
|
// Note that the functions below may panic, and this is on purpose to prevent Gatus from starting with
|
|
// invalid configurations
|
|
validateAlertingConfig(config)
|
|
validateSecurityConfig(config)
|
|
validateServicesConfig(config)
|
|
validateKubernetesConfig(config)
|
|
validateWebConfig(config)
|
|
validateStorageConfig(config)
|
|
}
|
|
return
|
|
}
|
|
|
|
func validateStorageConfig(config *Config) {
|
|
if config.Storage == nil {
|
|
config.Storage = &storage.Config{}
|
|
}
|
|
err := storage.Initialize(config.Storage)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
// Remove all ServiceStatus that represent services which no longer exist in the configuration
|
|
var keys []string
|
|
for _, service := range config.Services {
|
|
keys = append(keys, util.ConvertGroupAndServiceToKey(service.Group, service.Name))
|
|
}
|
|
numberOfServiceStatusesDeleted := storage.Get().DeleteAllServiceStatusesNotInKeys(keys)
|
|
if numberOfServiceStatusesDeleted > 0 {
|
|
log.Printf("[config][validateStorageConfig] Deleted %d service statuses because their matching services no longer existed", numberOfServiceStatusesDeleted)
|
|
}
|
|
}
|
|
|
|
func validateWebConfig(config *Config) {
|
|
if config.Web == nil {
|
|
config.Web = &WebConfig{Address: DefaultAddress, Port: DefaultPort}
|
|
} else {
|
|
config.Web.validateAndSetDefaults()
|
|
}
|
|
}
|
|
|
|
func validateKubernetesConfig(config *Config) {
|
|
if config.Kubernetes != nil && config.Kubernetes.AutoDiscover {
|
|
if config.Kubernetes.ServiceTemplate == nil {
|
|
panic("kubernetes.service-template cannot be nil")
|
|
}
|
|
if config.Debug {
|
|
log.Println("[config][validateKubernetesConfig] Automatically discovering Kubernetes services...")
|
|
}
|
|
discoveredServices, err := k8s.DiscoverServices(config.Kubernetes)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
config.Services = append(config.Services, discoveredServices...)
|
|
log.Printf("[config][validateKubernetesConfig] Discovered %d Kubernetes services", len(discoveredServices))
|
|
}
|
|
}
|
|
|
|
func validateServicesConfig(config *Config) {
|
|
for _, service := range config.Services {
|
|
if config.Debug {
|
|
log.Printf("[config][validateServicesConfig] Validating service '%s'", service.Name)
|
|
}
|
|
service.ValidateAndSetDefaults()
|
|
}
|
|
log.Printf("[config][validateServicesConfig] Validated %d services", len(config.Services))
|
|
}
|
|
|
|
func validateSecurityConfig(config *Config) {
|
|
if config.Security != nil {
|
|
if config.Security.IsValid() {
|
|
if config.Debug {
|
|
log.Printf("[config][validateSecurityConfig] Basic security configuration has been validated")
|
|
}
|
|
} else {
|
|
// If there was an attempt to configure security, then it must mean that some confidential or private
|
|
// data are exposed. As a result, we'll force a panic because it's better to be safe than sorry.
|
|
panic(ErrInvalidSecurityConfig)
|
|
}
|
|
}
|
|
}
|
|
|
|
// validateAlertingConfig validates the alerting configuration
|
|
// Note that the alerting configuration has to be validated before the service configuration, because the default alert
|
|
// returned by provider.AlertProvider.GetDefaultAlert() must be parsed before core.Service.ValidateAndSetDefaults()
|
|
// sets the default alert values when none are set.
|
|
func validateAlertingConfig(config *Config) {
|
|
if config.Alerting == nil {
|
|
log.Printf("[config][validateAlertingConfig] Alerting is not configured")
|
|
return
|
|
}
|
|
alertTypes := []core.AlertType{
|
|
core.CustomAlert,
|
|
core.DiscordAlert,
|
|
core.MattermostAlert,
|
|
core.MessagebirdAlert,
|
|
core.PagerDutyAlert,
|
|
core.SlackAlert,
|
|
core.TelegramAlert,
|
|
core.TwilioAlert,
|
|
}
|
|
var validProviders, invalidProviders []core.AlertType
|
|
for _, alertType := range alertTypes {
|
|
alertProvider := GetAlertingProviderByAlertType(config, alertType)
|
|
if alertProvider != nil {
|
|
if alertProvider.IsValid() {
|
|
// Parse alerts with the provider's default alert
|
|
if alertProvider.GetDefaultAlert() != nil {
|
|
for _, service := range config.Services {
|
|
for alertIndex, alert := range service.Alerts {
|
|
if alertType == alert.Type {
|
|
if config.Debug {
|
|
log.Printf("[config][validateAlertingConfig] Parsing alert %d with provider's default alert for provider=%s in service=%s", alertIndex, alertType, service.Name)
|
|
}
|
|
provider.ParseWithDefaultAlert(alertProvider.GetDefaultAlert(), alert)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
validProviders = append(validProviders, alertType)
|
|
} else {
|
|
log.Printf("[config][validateAlertingConfig] Ignoring provider=%s because configuration is invalid", alertType)
|
|
invalidProviders = append(invalidProviders, alertType)
|
|
}
|
|
} else {
|
|
invalidProviders = append(invalidProviders, alertType)
|
|
}
|
|
}
|
|
log.Printf("[config][validateAlertingConfig] configuredProviders=%s; ignoredProviders=%s", validProviders, invalidProviders)
|
|
}
|
|
|
|
// GetAlertingProviderByAlertType returns an provider.AlertProvider by its corresponding core.AlertType
|
|
func GetAlertingProviderByAlertType(config *Config, alertType core.AlertType) provider.AlertProvider {
|
|
switch alertType {
|
|
case core.CustomAlert:
|
|
if config.Alerting.Custom == nil {
|
|
// Since we're returning an interface, we need to explicitly return nil, even if the provider itself is nil
|
|
return nil
|
|
}
|
|
return config.Alerting.Custom
|
|
case core.DiscordAlert:
|
|
if config.Alerting.Discord == nil {
|
|
// Since we're returning an interface, we need to explicitly return nil, even if the provider itself is nil
|
|
return nil
|
|
}
|
|
return config.Alerting.Discord
|
|
case core.MattermostAlert:
|
|
if config.Alerting.Mattermost == nil {
|
|
// Since we're returning an interface, we need to explicitly return nil, even if the provider itself is nil
|
|
return nil
|
|
}
|
|
return config.Alerting.Mattermost
|
|
case core.MessagebirdAlert:
|
|
if config.Alerting.Messagebird == nil {
|
|
// Since we're returning an interface, we need to explicitly return nil, even if the provider itself is nil
|
|
return nil
|
|
}
|
|
return config.Alerting.Messagebird
|
|
case core.PagerDutyAlert:
|
|
if config.Alerting.PagerDuty == nil {
|
|
// Since we're returning an interface, we need to explicitly return nil, even if the provider itself is nil
|
|
return nil
|
|
}
|
|
return config.Alerting.PagerDuty
|
|
case core.SlackAlert:
|
|
if config.Alerting.Slack == nil {
|
|
// Since we're returning an interface, we need to explicitly return nil, even if the provider itself is nil
|
|
return nil
|
|
}
|
|
return config.Alerting.Slack
|
|
case core.TelegramAlert:
|
|
if config.Alerting.Telegram == nil {
|
|
// Since we're returning an interface, we need to explicitly return nil, even if the provider itself is nil
|
|
return nil
|
|
}
|
|
return config.Alerting.Telegram
|
|
case core.TwilioAlert:
|
|
if config.Alerting.Twilio == nil {
|
|
// Since we're returning an interface, we need to explicitly return nil, even if the provider itself is nil
|
|
return nil
|
|
}
|
|
return config.Alerting.Twilio
|
|
}
|
|
return nil
|
|
}
|