Documentation ¶
Index ¶
- Constants
- type Check
- type CheckBlackListConfig
- type ChecksConfig
- type Consul
- type ConsulAlertClient
- func (c *ConsulAlertClient) CheckBlackList() *CheckBlackListConfig
- func (c *ConsulAlertClient) CheckChangeThreshold() int
- func (c *ConsulAlertClient) CheckStatus(node, serviceId, checkId string) (status, output string)
- func (c *ConsulAlertClient) ChecksEnabled() bool
- func (c *ConsulAlertClient) CustomNotifiers() []string
- func (c *ConsulAlertClient) EmailConfig() *EmailNotifierConfig
- func (c *ConsulAlertClient) EventHandlers(eventName string) []string
- func (c *ConsulAlertClient) EventsEnabled() bool
- func (c *ConsulAlertClient) InfluxdbConfig() *InfluxdbNotifierConfig
- func (c *ConsulAlertClient) IsBlacklisted(check *Check) bool
- func (c *ConsulAlertClient) LoadConfig()
- func (c *ConsulAlertClient) LogConfig() *LogNotifierConfig
- func (c *ConsulAlertClient) NewAlerts() []Check
- func (c *ConsulAlertClient) PagerDutyConfig() *PagerDutyNotifierConfig
- func (c *ConsulAlertClient) SlackConfig() *SlackNotifierConfig
- func (c *ConsulAlertClient) UpdateCheckData()
- type ConsulAlertConfig
- type EmailNotifierConfig
- type Event
- type EventsConfig
- type InfluxdbNotifierConfig
- type LogNotifierConfig
- type NotifiersConfig
- type PagerDutyNotifierConfig
- type SlackNotifierConfig
- type Status
Constants ¶
View Source
const ( ConfigTypeBool = iota ConfigTypeString ConfigTypeInt ConfigTypeStrArray )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CheckBlackListConfig ¶ added in v0.1.2
type ChecksConfig ¶
type ChecksConfig struct { Enabled bool ChangeThreshold int Blacklist *CheckBlackListConfig }
type Consul ¶
type Consul interface { LoadConfig() EventsEnabled() bool ChecksEnabled() bool EventHandlers(eventName string) []string EmailConfig() *EmailNotifierConfig LogConfig() *LogNotifierConfig InfluxdbConfig() *InfluxdbNotifierConfig SlackConfig() *SlackNotifierConfig PagerDutyConfig() *PagerDutyNotifierConfig CheckChangeThreshold() int CheckBlackList() *CheckBlackListConfig UpdateCheckData() NewAlerts() []Check IsBlacklisted(check *Check) bool CustomNotifiers() []string CheckStatus(node, statusId, checkId string) (status, output string) }
type ConsulAlertClient ¶
type ConsulAlertClient struct {
// contains filtered or unexported fields
}
func NewClient ¶
func NewClient(address, dc string) (*ConsulAlertClient, error)
func (*ConsulAlertClient) CheckBlackList ¶ added in v0.1.2
func (c *ConsulAlertClient) CheckBlackList() *CheckBlackListConfig
func (*ConsulAlertClient) CheckChangeThreshold ¶
func (c *ConsulAlertClient) CheckChangeThreshold() int
func (*ConsulAlertClient) CheckStatus ¶
func (c *ConsulAlertClient) CheckStatus(node, serviceId, checkId string) (status, output string)
func (*ConsulAlertClient) ChecksEnabled ¶
func (c *ConsulAlertClient) ChecksEnabled() bool
func (*ConsulAlertClient) CustomNotifiers ¶
func (c *ConsulAlertClient) CustomNotifiers() []string
func (*ConsulAlertClient) EmailConfig ¶
func (c *ConsulAlertClient) EmailConfig() *EmailNotifierConfig
func (*ConsulAlertClient) EventHandlers ¶
func (c *ConsulAlertClient) EventHandlers(eventName string) []string
func (*ConsulAlertClient) EventsEnabled ¶
func (c *ConsulAlertClient) EventsEnabled() bool
func (*ConsulAlertClient) InfluxdbConfig ¶
func (c *ConsulAlertClient) InfluxdbConfig() *InfluxdbNotifierConfig
func (*ConsulAlertClient) IsBlacklisted ¶ added in v0.1.2
func (c *ConsulAlertClient) IsBlacklisted(check *Check) bool
func (*ConsulAlertClient) LoadConfig ¶
func (c *ConsulAlertClient) LoadConfig()
func (*ConsulAlertClient) LogConfig ¶
func (c *ConsulAlertClient) LogConfig() *LogNotifierConfig
func (*ConsulAlertClient) NewAlerts ¶
func (c *ConsulAlertClient) NewAlerts() []Check
func (*ConsulAlertClient) PagerDutyConfig ¶ added in v0.1.2
func (c *ConsulAlertClient) PagerDutyConfig() *PagerDutyNotifierConfig
func (*ConsulAlertClient) SlackConfig ¶
func (c *ConsulAlertClient) SlackConfig() *SlackNotifierConfig
func (*ConsulAlertClient) UpdateCheckData ¶
func (c *ConsulAlertClient) UpdateCheckData()
type ConsulAlertConfig ¶
type ConsulAlertConfig struct { Checks *ChecksConfig Events *EventsConfig Notifiers *NotifiersConfig }
func DefaultAlertConfig ¶
func DefaultAlertConfig() *ConsulAlertConfig
type EmailNotifierConfig ¶
type EventsConfig ¶
type InfluxdbNotifierConfig ¶
type LogNotifierConfig ¶
type NotifiersConfig ¶
type NotifiersConfig struct { Email *EmailNotifierConfig Log *LogNotifierConfig Influxdb *InfluxdbNotifierConfig Slack *SlackNotifierConfig PagerDuty *PagerDutyNotifierConfig Custom []string }
type PagerDutyNotifierConfig ¶ added in v0.1.2
type SlackNotifierConfig ¶
Click to show internal directories.
Click to hide internal directories.