health_check
Verify the reachability of a Hasura GraphQL endpoint by testing its health status using a specific HTTP URL to ensure operational reliability.
Instructions
Checks if the configured Hasura GraphQL endpoint is reachable...
Input Schema
Name | Required | Description | Default |
---|---|---|---|
healthEndpointUrl | No | Optional. A specific HTTP health check URL... |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"healthEndpointUrl": {
"description": "Optional. A specific HTTP health check URL...",
"format": "uri",
"type": "string"
}
},
"type": "object"
}