Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type App ¶
type App struct { // ProxyURL to be used in outgoing http(s) requests except Kubernetes // requests to cluster ProxyURL string `yaml:"proxyURL"` // ClusterName to used in notifications to indicate which cluster has // issue ClusterName string `yaml:"clusterName"` // DisableUpdateCheck if set to true, welcome message will not be // sent to configured notification channels DisableStartupMessage bool `yaml:"disableStartupMessage"` // LogFormatter used for setting custom formatter when app prints logs LogFormatter string `yaml:"logFormatter"` }
App confing struct
type Config ¶
type Config struct { // App general configuration App App `yaml:"app"` // Upgrader configuration Upgrader Upgrader `yaml:"upgrader"` // PvcMonitor configuration PvcMonitor PvcMonitor `yaml:"pvcMonitor"` // NodeMonitor configuration NodeMonitor NodeMonitor `yaml:"nodeMonitor"` // MaxRecentLogLines optional max tail log lines in messages, // if it's not provided it will get all log lines MaxRecentLogLines int64 `yaml:"maxRecentLogLines"` // IgnoreFailedGracefulShutdown if set to true, containers which are // forcefully killed during shutdown (as their graceful shutdown failed) // are not reported as error IgnoreFailedGracefulShutdown bool `yaml:"ignoreFailedGracefulShutdown"` // Namespaces is an optional list of namespaces that you want to watch or // forbid, if it's not provided it will watch all namespaces. // If you want to forbid a namespace, configure it with !<namespace name> // You can either set forbidden namespaces or allowed, not both Namespaces []string `yaml:"namespaces"` // Reasons is an optional list of reasons that you want to watch or forbid, // if it's not provided it will watch all reasons. // If you want to forbid a reason, configure it with !<reason> // You can either set forbidden reasons or allowed, not both Reasons []string `yaml:"reasons"` // IgnoreContainerNames optional list of container names to ignore IgnoreContainerNames []string `yaml:"ignoreContainerNames"` // IgnorePodNames optional list of pod name regexp patterns to ignore IgnorePodNames []string `yaml:"ignorePodNames"` // IgnoreLogPatterns optional list of regexp patterns to ignore IgnoreLogPatterns []string `yaml:"ignoreLogPatterns"` // Alert is a map contains a map of each provider configuration // e.g. {"slack": {"webhook": "URL"}} Alert map[string]map[string]interface{} `yaml:"alert"` // AllowedNamespaces, ForbiddenNamespaces are calculated internally // after populating Namespaces configuration AllowedNamespaces []string ForbiddenNamespaces []string // AllowedReasons, ForbiddenReasons are calculated internally after // populating Reasons configuration AllowedReasons []string ForbiddenReasons []string // Patterns are compiled from IgnorePodNames after populating // IgnorePodNames configuration IgnorePodNamePatterns []*regexp.Regexp // Patterns are compiled from IgnoreLogPatterns after populating // IgnoreLogPatterns configuration IgnoreLogPatternsCompiled []*regexp.Regexp }
func DefaultConfig ¶ added in v0.8.0
func DefaultConfig() *Config
func LoadConfig ¶
LoadConfig loads yaml configuration from file if provided, otherwise loads default configuration
type NodeMonitor ¶ added in v0.10.0
type NodeMonitor struct { // Enabled if set to true, it will enable node watcher // By default, this value is true Enabled bool `yaml:"enabled"` }
NodeMonitor confing struct
type PvcMonitor ¶ added in v0.8.0
type PvcMonitor struct { // Enabled if set to true, it will check pvc usage periodically // By default, this value is true Enabled bool `yaml:"enabled"` // Interval is the frequency (in minutes) to check pvc usage in the cluster // By default, this value is 5 Interval int `yaml:"interval"` // Threshold is the percentage of accepted pvc usage. if current usage // exceeds this value, it will send a notification. // By default, this value is 80 Threshold float64 `yaml:"threshold"` }
PvcMonitor confing struct
Click to show internal directories.
Click to hide internal directories.