Liveness probe
GET
/health
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/healthReturns a static healthy response without checking dependencies, intended for orchestrator liveness probes
Responses
Section titled “ Responses ”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"}