diff options
author | vporyadke <zalyalov@ydb.tech> | 2024-01-23 15:29:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 15:29:34 +0100 |
commit | f7af2414e8e24b3765791b3fc1c2aa3801c9380f (patch) | |
tree | 54c39acd8afbe649bc2a66201b9b352018a96a6c | |
parent | 86c175245c4b10412f6852499e78c7478754dac8 (diff) | |
download | ydb-f7af2414e8e24b3765791b3fc1c2aa3801c9380f.tar.gz |
fix counters (#1237)
-rw-r--r-- | ydb/core/grpc_services/db_metadata_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/grpc_services/db_metadata_cache.h b/ydb/core/grpc_services/db_metadata_cache.h index f28f3bfe65..0caa092061 100644 --- a/ydb/core/grpc_services/db_metadata_cache.h +++ b/ydb/core/grpc_services/db_metadata_cache.h @@ -146,7 +146,7 @@ public: const ::NMonitoring::TDynamicCounterPtr& counters) : Path(path) , BoardPath(MakeDatabaseMetadataCacheBoardPath(Path)) { - Counters = GetServiceCounters(counters, "utils")->GetSubgroup("database", path); + Counters = GetServiceCounters(counters, "utils"); } static ui32 PickActiveNode(const TBoardInfoEntries& infoEntries) { |