Readiness Check Args
data class ReadinessCheckArgs(val appStartTimeout: Output<String>? = null, val checkInterval: Output<String>? = null, val failureThreshold: Output<Int>? = null, val host: Output<String>? = null, val path: Output<String>? = null, val successThreshold: Output<Int>? = null, val timeout: Output<String>? = null) : ConvertibleToJava<ReadinessCheckArgs>
Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation.
Properties
Link copied to clipboard
A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.
Link copied to clipboard
Interval between health checks.
Link copied to clipboard
Number of consecutive failed checks required before removing traffic.
Link copied to clipboard
Number of consecutive successful checks required before receiving traffic.