Liveness + readiness probe
curl --request GET \
--url http://localhost:3773/healthimport requests
url = "http://localhost:3773/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://localhost:3773/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3773",
CURLOPT_URL => "http://localhost:3773/health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:3773/health"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:3773/health")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3773/health")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"version": "2026.12.6.dev224+gbf39a0530",
"health": "healthy",
"runtime": {
"storage_backend": "InMemoryStorage",
"scheduler_backend": "InMemoryScheduler",
"task_manager_running": true,
"strict_ready": true
},
"application": {
"penguin_id": "8faa865e-d8ec-8b2f-f000-598e8e463d60",
"agent_did": "did:bindu:bindu_builder_at_getbindu_com:agent:8faa865e-d8ec-8b2f-f000-598e8e463d60"
},
"system": {
"python_version": "3.12.9",
"platform": "Windows",
"environment": "development"
},
"status": "ok",
"ready": true,
"uptime_seconds": 541
}{
"status": "degraded",
"checks": {
"storage": "error: connection refused",
"scheduler": "ok",
"bus": "ok",
"grpc": "ok",
"extensions": "ok"
},
"timestamp": "2026-04-19T18:00:00+00:00"
}Health & Monitoring
Liveness + readiness probe
Returns 200 when healthy, 503 when any mandatory dependency (storage, scheduler, message bus, grpc) is degraded. The body carries per-component status so orchestrators can show which specific thing is broken.
GET
/
health
Liveness + readiness probe
curl --request GET \
--url http://localhost:3773/healthimport requests
url = "http://localhost:3773/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://localhost:3773/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3773",
CURLOPT_URL => "http://localhost:3773/health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:3773/health"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:3773/health")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3773/health")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"version": "2026.12.6.dev224+gbf39a0530",
"health": "healthy",
"runtime": {
"storage_backend": "InMemoryStorage",
"scheduler_backend": "InMemoryScheduler",
"task_manager_running": true,
"strict_ready": true
},
"application": {
"penguin_id": "8faa865e-d8ec-8b2f-f000-598e8e463d60",
"agent_did": "did:bindu:bindu_builder_at_getbindu_com:agent:8faa865e-d8ec-8b2f-f000-598e8e463d60"
},
"system": {
"python_version": "3.12.9",
"platform": "Windows",
"environment": "development"
},
"status": "ok",
"ready": true,
"uptime_seconds": 541
}{
"status": "degraded",
"checks": {
"storage": "error: connection refused",
"scheduler": "ok",
"bus": "ok",
"grpc": "ok",
"extensions": "ok"
},
"timestamp": "2026-04-19T18:00:00+00:00"
}Response
Healthy
Application version with build information
Overall health status
Available options:
healthy, degraded Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Detailed status
Available options:
ok, error Whether the service is ready to accept requests
Service uptime in seconds
Was this page helpful?
⌘I