Documentation
¶
Overview ¶
Package cloudwatch reports the status of AWS CloudWatch alarms.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // The action_prefix attribute will filter the reported alarms to those whose action have the provided prefix. ActionPrefix string `hcl:"action_prefix,optional"` // The alarm_name_prefix attribute will filter the reported alarms to those whose name have the provided prefix. AlarmNamePrefix string `hcl:"alarm_name_prefix,optional"` // The alarm_names attribute will filter the reported alarms to those that exactly match one of the names in the list. AlarmNames []string `hcl:"alarm_names,optional"` // The alarm_types attribute will filter the reported alarms to those of the types provided (either CompositeAlarm or MetricAlarm or both which is the default). AlarmTypes []string `hcl:"alarm_types,optional"` // Region overrides the default AWS region Region string `hcl:"region,optional"` // InsufficientDataSeverity overrides the default severity when alarm is in "insufficient data" state. Defaults to severity.ok InsufficientDataSeverity int `hcl:"insufficient_data_severity,optional"` }
Config for the aws_cloudwatch probe: it checks AWS CloudWatch alarms status.
Click to show internal directories.
Click to hide internal directories.