Liveness check
HEAD
/healthz
const url = 'http://127.0.0.1:8080/healthz';const options = {method: 'HEAD'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request HEAD \ --url http://127.0.0.1:8080/healthzResponses
Section titled “ Responses ”No content