Skip to content
English
  • There are no suggestions because the search field is empty.

Liveness probe

GET /health Select code sample Fetch cURL
const url = 'https://localhost:10001/health';const options = {method: 'GET'};
try {  const response = await fetch(url, options);  const data = await response.json();  console.log(data);} catch (error) {  console.error(error);}
curl --request GET \  --url https://localhost:10001/health

Returns a static healthy response without checking dependencies, intended for orchestrator liveness probes

Responses

Section titled “ Responses ”

200

Section titled “200 ”

Health status

Media type application/json object service string status string timestamp string version string
Example
{  "service": "governance-service",  "status": "healthy",  "version": "1.0.0"}
Previous
Apply project indicator to controls
Next
Authenticated health check for the auth integration