Load Balancer Healthcheck Args
data class LoadBalancerHealthcheckArgs(val checkIntervalSeconds: Output<Int>? = null, val healthyThreshold: Output<Int>? = null, val path: Output<String>? = null, val port: Output<Int>, val protocol: Output<String>, val responseTimeoutSeconds: Output<Int>? = null, val unhealthyThreshold: Output<Int>? = null) : ConvertibleToJava<LoadBalancerHealthcheckArgs>
Properties
Link copied to clipboard
The number of seconds between two consecutive health checks. If not specified, the default value is 10
.
Link copied to clipboard
The number of times a health check must pass for a backend Droplet to be marked "healthy" and be re-added to the pool. If not specified, the default value is 5
.
Link copied to clipboard
The number of seconds the Load Balancer instance will wait for a response until marking a health check as failed. If not specified, the default value is 5
.
Link copied to clipboard
The number of times a health check must fail for a backend Droplet to be marked "unhealthy" and be removed from the pool. If not specified, the default value is 3
.