diff --git a/README.md b/README.md index 9ef6b8f..44f2726 100644 --- a/README.md +++ b/README.md @@ -472,7 +472,6 @@ message StatusReport { EffectiveConfig effective_config = 2; RemoteConfigStatus remote_config_status = 3; bytes server_provided_all_addons_hash = 4; - HealthStatus health_status = 5; } ``` @@ -517,27 +516,6 @@ The server SHOULD compare this hash to the aggregate hash of all addons that it has for this Agent and if the hashes are different the server SHOULD send an AddonsAvailable message to the agent. -

health_status

- - -Indicates whether the agent is healthy or not. The value is one of the enum: - - -```protobuf -enum HealthStatus { - // The health status is unchanged since last reported. - HealthUnset = 0; - // The agent is healthy. - Healthy = 1; - // The agent is unhealthy. - Unhealthy = 2; -} -``` - - -More granular health information is expected to be reported by the Agent as -described in [Own Telemetry Reporting](#own-telemetry-reporting). -

AgentDescription Message