cURL
curl --request GET \
--url http://localhost:4100/healthzconst options = {method: 'GET'};
fetch('http://localhost:4100/healthz', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok",
"version": "<string>",
"sourceCommit": "<string>"
}system
Get healthz
cURL
curl --request GET \
--url http://localhost:4100/healthzconst options = {method: 'GET'};
fetch('http://localhost:4100/healthz', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok",
"version": "<string>",
"sourceCommit": "<string>"
}