Probe Method | Applicable Scenario | Configuration Item | Description |
ICMP Ping | Only probes network connectivity, and host reachability. | Probe Frequency | Required, with optional intervals of every 30 seconds, every 60 seconds, every 3 minutes, every 5 minutes, or every 10 minutes. |
HTTP/HTTPS | Applicable for applications that require content recognition in requests, such as web applications and app services. | Probe Frequency | Required, with optional intervals of every 30 seconds, every 60 seconds, every 3 minutes, every 5 minutes, or every 10 minutes. |
| | URL | Required, the full URL for health checks, for example: www.example.com/test . |
| | Probe Port | Required, defaulting to port 80. It is recommended not to modify this unless a specific port needs to be designated. |
| | HTTP Method | Required, the HTTP method for health checks is by default HEAD, with options including GET or HEAD. If the HEAD method is used, the server returns only HTTP header information, which can reduce backend overhead and enhance request efficiency. The corresponding origin service must support HEAD. If the GET method is used, the origin service simply needs to support GET. |
| | HTTP Status Code | Required, the origin is considered healthy when the status code matches the selected status codes. By default, this includes 2XX, with options to select: 1XX, 2XX, 3XX, 4XX, 5XX. |
| | Follow Redirects | Disabled by default. When enabled, the probe node will initiate another probe based on the 301/302 redirect address responded by the origin. It Uses the status code of the final redirection response as the determination result for the health status. Up to 3 redirects are supported. |
| | Custom Request Headers | Optional, custom request headers can be configured to be sent with the health check requests to the origin, with a maximum of 8 configurations allowed, for example: host: www.example.com . |
TCP | Suitable for scenarios where high reliability and data accuracy are essential, but transmission speed is of lesser importance, such as file transfers and remote log-ins. | Probe Frequency | Required, with optional intervals of every 30 seconds, every 60 seconds, every 3 minutes, every 5 minutes, or every 10 minutes. |
| | Probe Port | Required, defaulting to port 80. It is recommended not to modify this unless a specific port needs to be designated. |
UDP | Suitable for scenarios where high transmission efficiency is crucial and a relatively lower level of accuracy is acceptable, such as instant messaging and online video streaming. | Probe Frequency | Required, with optional intervals of every 30 seconds, every 60 seconds, every 3 minutes, every 5 minutes, or every 10 minutes. |
| | Probe Port | Required, defaulting to port 80. It is recommended not to modify this unless a specific port needs to be designated. |
| | Probe Request | Required, customize the content of the health check request, with a limit of 500 characters. |
| | Probe Response Result | Required, customize the content of the health check request, with a limit of 500 characters. |
Configuration Item | Description |
Timeout | The allowed timeout duration for a single health check request to the origin. If no response is received within this period, the origin is considered Unhealthy. The default is 5 seconds, with a configurable range of [1, 30] seconds. |
Unhealthy Threshold | The number of consecutive probe failures required to determine an origin Unhealthy. Once this threshold is reached, the origin is considered Unhealthy. The default is 2 times, with a configurable range of [1, 5]. For example, if this value is set to 2, and an origin is initially Healthy, upon receiving two consecutive Unhealthy probe results, the origin will be considered Unhealthy. |
Healthy Threshold | The number of consecutive successful probes required to restore an origin to a Healthy state, making it available again. The default is 3 times, with a configurable range of [1, 5]. For example, if this value is set to 3, and an origin is Unhealthy, after three consecutive Healthy probe results, the origin will be restored to a Healthy status. |
Was this page helpful?