add etl info to server_info response

This commit is contained in:
CJ Cobb
2022-03-17 12:39:14 -04:00
committed by CJ Cobb
parent bcd59ddf73
commit b1add848f4
12 changed files with 80 additions and 22 deletions

View File

@@ -12,6 +12,7 @@ make_WsContext(
std::shared_ptr<BackendInterface const> const& backend,
std::shared_ptr<SubscriptionManager> const& subscriptions,
std::shared_ptr<ETLLoadBalancer> const& balancer,
std::shared_ptr<ReportingETL const> const& etl,
std::shared_ptr<WsBase> const& session,
Backend::LedgerRange const& range,
Counters& counters,
@@ -30,6 +31,7 @@ make_WsContext(
backend,
subscriptions,
balancer,
etl,
session,
range,
counters,
@@ -43,6 +45,7 @@ make_HttpContext(
std::shared_ptr<BackendInterface const> const& backend,
std::shared_ptr<SubscriptionManager> const& subscriptions,
std::shared_ptr<ETLLoadBalancer> const& balancer,
std::shared_ptr<ReportingETL const> const& etl,
Backend::LedgerRange const& range,
RPC::Counters& counters,
std::string const& clientIp)
@@ -74,6 +77,7 @@ make_HttpContext(
backend,
subscriptions,
balancer,
etl,
nullptr,
range,
counters,