Monitor the health and availability of your HTTP endpoints
200
), wildcards (e.g., 2XX
), and multiple patterns (e.g., 200,201,X04
)http://
or https://
)200
2XX
(any 2XX status) You must use uppercase for wildcards.200,201,X04
200
: Expect exactly 200 OK2XX
: Accept any successful responseX00
: Accept any status code ending in 00200,201,202
: Accept any of these specific codes.*"status":"healthy".*
: Check for a healthy status in JSON^OK$
: Expect exactly “OK”version: [0-9]+\.[0-9]+\.[0-9]+
: Match a semantic version numberContent-Type
header is automatically set to application/json
.