Skip to content

Commit 6284614

Browse files
committed
Add name property in health check message
1 parent 13b21d6 commit 6284614

2 files changed

Lines changed: 46 additions & 37 deletions

File tree

health/health.pb.go

Lines changed: 43 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

health/health.proto

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ message HealthCheck {
2727
SERVICE_UNKNOWN = 3;
2828
INTERNAL_ERROR = 4;
2929
}
30-
ServingStatus status = 1;
30+
string Name = 1;
31+
ServingStatus status = 2;
3132
}
3233

3334
message HealthChecks {
34-
repeated HealthCheck healthChecks = 1;
35+
repeated HealthCheck results = 1;
3536
}

0 commit comments

Comments
 (0)