diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2023-12-08 16:23:27 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2023-12-08 18:05:49 +0300 |
commit | 169843cf9b08b964ab1ca4de3878fcfbf20531eb (patch) | |
tree | 065b9b4b2c013cfac9979fd6307e1f07f98c07fe | |
parent | 66b6b0e179bdb3c483a3e80fc100024fdcc74806 (diff) | |
download | ydb-169843cf9b08b964ab1ca4de3878fcfbf20531eb.tar.gz |
Intermediate changes
-rw-r--r-- | yt/yt/library/monitoring/http_integration.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/yt/yt/library/monitoring/http_integration.cpp b/yt/yt/library/monitoring/http_integration.cpp index a526d2ede6..25fe9ad304 100644 --- a/yt/yt/library/monitoring/http_integration.cpp +++ b/yt/yt/library/monitoring/http_integration.cpp @@ -23,6 +23,8 @@ #include <yt/yt/core/http/helpers.h> #include <yt/yt/core/http/server.h> +#include <yt/yt/core/bus/tcp/dispatcher.h> + #include <yt/yt/core/misc/ref_counted_tracker_statistics_producer.h> #include <yt/yt/library/profiling/solomon/exporter.h> @@ -78,6 +80,10 @@ void Initialize( *orchidRoot, "/monitoring", CreateVirtualNode((*monitoringManager)->GetService())); + SetNodeByYPath( + *orchidRoot, + "/tcp_dispatcher", + CreateVirtualNode(NYT::NBus::TTcpDispatcher::Get()->GetOrchidService())); #ifdef _linux_ auto buildInfo = NYTProf::TBuildInfo::GetDefault(); |