#
Alarms
CloudWatch is an umbrella for a few different features. The one CloudWedge is using heavily is the CloudWatch Alarms features.
CloudWatch Alarms are basically a way to set some configurations around a provided metric. CloudWatch will then monitor that metric and when certain thresholds are met based on your configuration it will send an alert out.
CloudWatch Concepts
Jump into the documentation to learn more about the main concepts with CloudWatch.
A few notable terms to learn:
#
Alarm Anatomy
CloudWedge uses CloudFormation to create the alarms for any given resource. The CloudFormation documentation is helpful to get oriented around what information goes into building an alarm.
The highlighted properties are the one CloudWedge exposes and you can manipulate for any resource with tags.
CloudWedgeAlarm:
Type: AWS::CloudWatch::Alarm
Properties:
ActionsEnabled: Boolean
AlarmActions:
- String
AlarmDescription: String
AlarmName: String
ComparisonOperator: String
DatapointsToAlarm: Integer
Dimensions:
- Dimension
EvaluateLowSampleCountPercentile: String
EvaluationPeriods: Integer
ExtendedStatistic: String
InsufficientDataActions:
- String
MetricName: String
Metrics:
- MetricDataQuery
Namespace: String
OKActions:
- String
Period: Integer
Statistic: String
Threshold: Double
ThresholdMetricId: String
TreatMissingData: String
Unit: String