0
0
AWScloud~10 mins

Health checks configuration 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 protocol for the health check.

AWS
HealthCheckProtocol: "[1]"
Drag options to blanks, or click blank then click option'
ASSH
BHTTP
CSMTP
DFTP
Attempts:
3 left
💡 Hint
Common Mistakes
Using unsupported protocols like FTP or SSH for health checks.
Leaving the protocol field empty.
2fill in blank
medium

Complete the code to set the port number for the health check.

AWS
HealthCheckPort: "[1]"
Drag options to blanks, or click blank then click option'
A80
B443
C22
D21
Attempts:
3 left
💡 Hint
Common Mistakes
Using port 21 which is for FTP.
Using port 22 which is for SSH.
3fill in blank
hard

Fix the error in the health check path configuration.

AWS
HealthCheckPath: "[1]"
Drag options to blanks, or click blank then click option'
A/status
Bstatus
Chttp://example.com/status
D/healthcheck
Attempts:
3 left
💡 Hint
Common Mistakes
Omitting the leading slash.
Using a full URL instead of a path.
4fill in blank
hard

Fill both blanks to configure the health check interval and timeout.

AWS
HealthCheckIntervalSeconds: [1], HealthCheckTimeoutSeconds: [2]
Drag options to blanks, or click blank then click option'
A30
B5
C10
D60
Attempts:
3 left
💡 Hint
Common Mistakes
Setting timeout longer than interval.
Using very short intervals causing unnecessary load.
5fill in blank
hard

Fill all three blanks to configure healthy threshold, unhealthy threshold, and matcher status code.

AWS
HealthyThresholdCount: [1], UnhealthyThresholdCount: [2], Matcher: { HTTPCode: "[3]" }
Drag options to blanks, or click blank then click option'
A3
B5
C200
D404
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing healthy and unhealthy threshold values.
Using wrong HTTP status codes for matcher.