aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/unified_agent_client/dynamic_counters_wrapper.h
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2023-03-31 10:54:08 +0300
committerDaniil Cherednik <dan.cherednik@gmail.com>2023-03-31 12:28:07 +0300
commitfc1cffcfa7f0497a1f97b384a24bcbf23362f3be (patch)
treec15f7ab5b9e9b20fd0ef8fc07d598d28e8b32004 /library/cpp/unified_agent_client/dynamic_counters_wrapper.h
parent8a749596d40e91c896a1907afcd108d9221fbde1 (diff)
downloadydb-e9cbe5c5cf67db853d223fd365c9f05b695f7b96.tar.gz
Ydb stable 23-1-1923.1.19
x-stable-origin-commit: c5d5a396e89d0a72e0267a55e93d8404d4fb54fe
Diffstat (limited to 'library/cpp/unified_agent_client/dynamic_counters_wrapper.h')
-rw-r--r--library/cpp/unified_agent_client/dynamic_counters_wrapper.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/library/cpp/unified_agent_client/dynamic_counters_wrapper.h b/library/cpp/unified_agent_client/dynamic_counters_wrapper.h
new file mode 100644
index 0000000000..cac4c6813d
--- /dev/null
+++ b/library/cpp/unified_agent_client/dynamic_counters_wrapper.h
@@ -0,0 +1,34 @@
+#pragma once
+
+#include <library/cpp/monlib/dynamic_counters/counters.h>
+
+namespace NUnifiedAgent {
+ class TDynamicCountersWrapper: public TAtomicRefCount<TDynamicCountersWrapper> {
+ public:
+ explicit TDynamicCountersWrapper(const TIntrusivePtr<NMonitoring::TDynamicCounters>& counters)
+ : Counters(counters)
+ {
+ }
+
+ virtual ~TDynamicCountersWrapper() = default;
+
+ const TIntrusivePtr<NMonitoring::TDynamicCounters>& Unwrap() const {
+ return Counters;
+ }
+
+ protected:
+ NMonitoring::TDeprecatedCounter& GetCounter(const TString& value, bool derivative) {
+ return *Counters->GetCounter(value, derivative);
+ }
+
+ private:
+ TIntrusivePtr<NMonitoring::TDynamicCounters> Counters;
+ };
+
+ class TUpdatableCounters: public TDynamicCountersWrapper {
+ public:
+ using TDynamicCountersWrapper::TDynamicCountersWrapper;
+
+ virtual void Update() = 0;
+ };
+}