diff --git a/app/api/routes_status.py b/app/api/routes_status.py
index f438b7e..5a62ee9 100644
--- a/app/api/routes_status.py
+++ b/app/api/routes_status.py
@@ -51,6 +51,7 @@ def get_status():
status="up",
started_at=status_service.server_started_at(),
version=APP_VERSION,
+ type="python",
),
agent=agent_info,
queue=QueueCounts(**counts),
diff --git a/app/models.py b/app/models.py
index b188df0..23f42cb 100644
--- a/app/models.py
+++ b/app/models.py
@@ -80,6 +80,7 @@ class ServerInfo(BaseModel):
status: str
started_at: datetime
version: str
+ type: str
class AgentInfo(BaseModel):
diff --git a/go-server/internal/api/status.go b/go-server/internal/api/status.go
index 2732dec..9561bf8 100644
--- a/go-server/internal/api/status.go
+++ b/go-server/internal/api/status.go
@@ -58,6 +58,7 @@ func handleStatus(stores Stores) http.HandlerFunc {
"server": map[string]any{
"status": "up",
"started_at": serverStartTime.Format(time.RFC3339Nano),
+ "type": "go",
"version": config.AppVersion,
},
"agent": agent,
diff --git a/static/index.html b/static/index.html
index 31ee5de..a016570 100644
--- a/static/index.html
+++ b/static/index.html
@@ -30,6 +30,7 @@