Liveness. The process is up and answering HTTP.
GET
/healthz
const url = 'https://infra-hyphae.run/healthz';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://infra-hyphae.run/healthzResponses
Section titled “ Responses ”Alive.
Media typeapplication/json
object
ok
required
boolean
Example
{ "ok": true}