diff options
author | kruall <kruall@ydb.tech> | 2023-02-07 20:28:32 +0300 |
---|---|---|
committer | kruall <kruall@ydb.tech> | 2023-02-07 20:28:32 +0300 |
commit | 840348d6ec22ac423ac3bfb7f586936bdc5d7059 (patch) | |
tree | c621fde61596b8bd3cf705ea8c67795d0d69058d /library/cpp/actors/core/mon_stats.h | |
parent | f6b76976b4f69e9e547b44df4722a700dd98dbec (diff) | |
download | ydb-840348d6ec22ac423ac3bfb7f586936bdc5d7059.tar.gz |
Add metrics about thread count in pool,
Diffstat (limited to 'library/cpp/actors/core/mon_stats.h')
-rw-r--r-- | library/cpp/actors/core/mon_stats.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/cpp/actors/core/mon_stats.h b/library/cpp/actors/core/mon_stats.h index 38629e2aa1..0fcbf6fcf4 100644 --- a/library/cpp/actors/core/mon_stats.h +++ b/library/cpp/actors/core/mon_stats.h @@ -65,6 +65,9 @@ namespace NActors { ui64 DecreasingThreadsByHoggishState = 0; i16 WrongWakenedThreadCount = 0; i16 CurrentThreadCount = 0; + i16 PotentialMaxThreadCount = 0; + i16 DefaultThreadCount = 0; + i16 MaxThreadCount = 0; bool IsNeedy = false; bool IsStarved = false; bool IsHoggish = false; |