diff --git a/Protos/V1/health_checks_common.proto b/Protos/V1/health_checks_common.proto index 39473cc9d..0c638c1a1 100644 --- a/Protos/V1/health_checks_common.proto +++ b/Protos/V1/health_checks_common.proto @@ -15,7 +15,8 @@ message CheckHealthRequest {} message CheckHealthResponse { message ServiceHealth { string name = 1; // Name of the service (e.g. "control_plane", "database", "redis") - bool healthy = 2; + string message = 2; + bool healthy = 3; } repeated ServiceHealth services = 1;