diff options
author | zalyalov <zalyalov@yandex-team.com> | 2023-09-05 17:48:21 +0300 |
---|---|---|
committer | zalyalov <zalyalov@yandex-team.com> | 2023-09-05 19:52:21 +0300 |
commit | 9e483e88e90499466fc3fbfd9e85371c771e6651 (patch) | |
tree | ece8b851e6e14271c1faa9074e5c13ecf04b44d3 | |
parent | 21b05ad829eb3ac89b42e80bf6b619006d01aa29 (diff) | |
download | ydb-9e483e88e90499466fc3fbfd9e85371c771e6651.tar.gz |
add a field for disabling healthcheck caching KIKIMR-18264
-rw-r--r-- | ydb/public/api/protos/ydb_monitoring.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/public/api/protos/ydb_monitoring.proto b/ydb/public/api/protos/ydb_monitoring.proto index be7190f59b..fbaaf7d1d8 100644 --- a/ydb/public/api/protos/ydb_monitoring.proto +++ b/ydb/public/api/protos/ydb_monitoring.proto @@ -27,6 +27,7 @@ message SelfCheckRequest { bool return_verbose_status = 2; // return detailed info about components checked with their statuses StatusFlag.Status minimum_status = 3; // minimum status of issues to return uint32 maximum_level = 4; // maximum level of issues to return + bool do_not_cache = 5; // by default database health state is taken from metadata cache; this option can be used to force bypassing that cache } message SelfCheckResponse { |