0
0
AWScloud~10 mins

CloudWatch alarms in AWS - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the metric name for the CloudWatch alarm.

AWS
MetricName: "[1]"
Drag options to blanks, or click blank then click option'
AStatusCheckFailed
BDiskReadOps
CNetworkIn
DCPUUtilization
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a metric that does not exist or is unrelated to CPU usage.
2fill in blank
medium

Complete the code to set the comparison operator for the alarm.

AWS
ComparisonOperator: "[1]"
Drag options to blanks, or click blank then click option'
AEqualToThreshold
BLessThanThreshold
CGreaterThanThreshold
DNotEqualToThreshold
Attempts:
3 left
💡 Hint
Common Mistakes
Using LessThanThreshold when you want to detect high values.
3fill in blank
hard

Fix the error in the alarm configuration by completing the missing statistic field.

AWS
Statistic: "[1]"
Drag options to blanks, or click blank then click option'
AAverage
BMaximum
CMinimum
DSum
Attempts:
3 left
💡 Hint
Common Mistakes
Using Sum when you want the average value.
4fill in blank
hard

Fill both blanks to set the alarm threshold and evaluation periods.

AWS
Threshold: [1], EvaluationPeriods: [2]
Drag options to blanks, or click blank then click option'
A80
B3
C5
D1
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing threshold with evaluation periods values.
5fill in blank
hard

Fill all three blanks to complete the alarm action configuration.

AWS
AlarmActions: ["[1]"], OKActions: ["[2]"], InsufficientDataActions: ["[3]"]
Drag options to blanks, or click blank then click option'
Aarn:aws:sns:us-east-1:123456789012:NotifyMe
Barn:aws:sns:us-east-1:123456789012:ClearNotify
Carn:aws:sns:us-east-1:123456789012:DataMissingNotify
Darn:aws:sns:us-east-1:123456789012:OtherTopic
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the ARNs for different alarm states.