This commit is contained in:
sfc-gh-tclinkenbeard 2021-02-22 10:18:43 -08:00
parent 25917634e8
commit 6ddec2c32f
1 changed files with 1 additions and 1 deletions

View File

@ -606,7 +606,7 @@ struct LogData : NonCopyable, public ReferenceCounted<LogData> {
specialCounter(cc, "QueueDiskBytesTotal", [tLogData](){ return tLogData->rawPersistentQueue->getStorageBytes().total; });
specialCounter(cc, "PeekMemoryReserved", [tLogData]() { return tLogData->peekMemoryLimiter.activePermits(); });
specialCounter(cc, "PeekMemoryRequestsStalled", [tLogData]() { return tLogData->peekMemoryLimiter.waiters(); });
specialCounter(cc, "Geneartion", [this]() { return this->recoveryCount; });
specialCounter(cc, "Generation", [this]() { return this->recoveryCount; });
}
~LogData() {