LivenessCheckResponse

data class LivenessCheckResponse(val checkInterval: String, val failureThreshold: Int, val host: String, val initialDelay: String, val path: String, val successThreshold: Int, val timeout: String)

Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances.

Constructors

Link copied to clipboard
fun LivenessCheckResponse(checkInterval: String, failureThreshold: Int, host: String, initialDelay: String, path: String, successThreshold: Int, timeout: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Interval between health checks.

Link copied to clipboard

Number of consecutive failed checks required before considering the VM unhealthy.

Link copied to clipboard

Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"

Link copied to clipboard

The initial delay before starting to execute the checks.

Link copied to clipboard

The request path.

Link copied to clipboard

Number of consecutive successful checks required before considering the VM healthy.

Link copied to clipboard

Time before the check is considered failed.