mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-30 07:55:51 +00:00
Improve names returned by server_info counters
This commit is contained in:
committed by
manojsdoshi
parent
fc04336caa
commit
d54f6278bb
@@ -2943,7 +2943,7 @@ NetworkOPsImp::reportFeeChange()
|
||||
if (f != mLastFeeSummary)
|
||||
{
|
||||
m_job_queue.addJob(
|
||||
jtCLIENT, "reportFeeChange->pubServer", [this](Job&) {
|
||||
jtCLIENT_FEE_CHANGE, "reportFeeChange->pubServer", [this](Job&) {
|
||||
pubServer();
|
||||
});
|
||||
}
|
||||
@@ -2953,7 +2953,7 @@ void
|
||||
NetworkOPsImp::reportConsensusStateChange(ConsensusPhase phase)
|
||||
{
|
||||
m_job_queue.addJob(
|
||||
jtCLIENT,
|
||||
jtCLIENT_CONSENSUS,
|
||||
"reportConsensusStateChange->pubConsensus",
|
||||
[this, phase](Job&) { pubConsensus(phase); });
|
||||
}
|
||||
@@ -3346,7 +3346,7 @@ NetworkOPsImp::addAccountHistoryJob(SubAccountHistoryInfoWeak subInfo)
|
||||
}
|
||||
|
||||
app_.getJobQueue().addJob(
|
||||
jtCLIENT,
|
||||
jtCLIENT_ACCT_HIST,
|
||||
"AccountHistoryTxStream",
|
||||
[this, dbType = databaseType, subInfo](Job&) {
|
||||
auto const& accountId = subInfo.index_->accountId_;
|
||||
|
||||
Reference in New Issue
Block a user