fix(alerting): Omit nil structs within alerting provider struct

This commit is contained in:
TwiN
2022-01-11 20:13:37 -05:00
parent 4700f54798
commit 89e6e4abd8
7 changed files with 9 additions and 9 deletions

View File

@ -17,7 +17,7 @@ type AlertProvider struct {
ID string `yaml:"id"`
// DefaultAlert is the default alert configuration to use for endpoints with an alert of the appropriate type
DefaultAlert *alert.Alert `yaml:"default-alert"`
DefaultAlert *alert.Alert `yaml:"default-alert,omitempty"`
}
// IsValid returns whether the provider's configuration is valid