diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-11-28 20:41:54 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-11-28 21:02:27 +0300 |
commit | de077773020afae2efc3905f4a88bdb8726efb59 (patch) | |
tree | bbfd0ee1db38d5adb9defe43a2916879fa0fd82e /yt | |
parent | d7050809886ad386ead58ed9d6999aac71df4a10 (diff) | |
download | ydb-de077773020afae2efc3905f4a88bdb8726efb59.tar.gz |
Intermediate changes
commit_hash:2e22bb432e7939d40f884f77ab89ea0ea8bd4bbc
Diffstat (limited to 'yt')
-rw-r--r-- | yt/yt/library/program/config.cpp | 4 | ||||
-rw-r--r-- | yt/yt/library/program/config.h | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/yt/yt/library/program/config.cpp b/yt/yt/library/program/config.cpp index c27f4a8ca3..e55b5a5205 100644 --- a/yt/yt/library/program/config.cpp +++ b/yt/yt/library/program/config.cpp @@ -1,7 +1,5 @@ #include "config.h" -#include <yt/yt/library/profiling/solomon/config.h> - #include <yt/yt/core/concurrency/fiber_scheduler_thread.h> namespace NYT { @@ -134,8 +132,6 @@ void TSingletonsConfig::Register(TRegistrar registrar) .DefaultNew(); registrar.Parameter("yp_service_discovery", &TThis::YPServiceDiscovery) .DefaultNew(); - registrar.Parameter("solomon_exporter", &TThis::SolomonExporter) - .DefaultNew(); registrar.Parameter("logging", &TThis::Logging) .DefaultCtor([] { return NLogging::TLogManagerConfig::CreateDefault(); }) .ResetOnLoad(); diff --git a/yt/yt/library/program/config.h b/yt/yt/library/program/config.h index 5490c37d54..23c737dc47 100644 --- a/yt/yt/library/program/config.h +++ b/yt/yt/library/program/config.h @@ -25,8 +25,6 @@ #include <yt/yt/library/process/io_dispatcher.h> -#include <yt/yt/library/profiling/solomon/exporter.h> - #include <yt/yt/library/tracing/jaeger/tracer.h> #include <library/cpp/yt/stockpile/stockpile.h> @@ -163,7 +161,6 @@ public: NRpc::TDispatcherConfigPtr RpcDispatcher; NRpc::NGrpc::TDispatcherConfigPtr GrpcDispatcher; NServiceDiscovery::NYP::TServiceDiscoveryConfigPtr YPServiceDiscovery; - NProfiling::TSolomonExporterConfigPtr SolomonExporter; NLogging::TLogManagerConfigPtr Logging; NTracing::TJaegerTracerConfigPtr Jaeger; NTracing::TTracingTransportConfigPtr TracingTransport; |