diff --git a/packages/common/api-builder/src/router.rs b/packages/common/api-builder/src/router.rs index 7651650459..57fad10fa4 100644 --- a/packages/common/api-builder/src/router.rs +++ b/packages/common/api-builder/src/router.rs @@ -78,7 +78,8 @@ pub async fn create_router( pub async fn health_check() -> impl IntoResponse { Json(json!({ "status": "ok", - "timestamp": chrono::Utc::now().timestamp_millis() + "runtime": "engine", + "version": env!("CARGO_PKG_VERSION") })) }