Complete the code to specify the protocol for the health check.
HealthCheckProtocol: "[1]"
The health check protocol must be set to HTTP to check web server health.
Complete the code to set the port number for the health check.
HealthCheckPort: "[1]"
The health check port should be 80 for HTTP services.
Fix the error in the health check path configuration.
HealthCheckPath: "[1]"
The health check path must start with a slash / to be valid.
Fill both blanks to configure the health check interval and timeout.
HealthCheckIntervalSeconds: [1], HealthCheckTimeoutSeconds: [2]
The interval is usually set to 30 seconds and the timeout to 10 seconds for balanced health checks.
Fill all three blanks to configure healthy threshold, unhealthy threshold, and matcher status code.
HealthyThresholdCount: [1], UnhealthyThresholdCount: [2], Matcher: { HTTPCode: "[3]" }
The unhealthy threshold is often set to 3, healthy threshold to 5, and the matcher expects HTTP status code 200 for success.