mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-10 17:02:29 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
68 lines
1.4 KiB
C++
68 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <xrpl/basics/UptimeClock.h>
|
|
#include <xrpl/beast/utility/Journal.h>
|
|
#include <xrpl/core/LoadEvent.h>
|
|
|
|
#include <chrono>
|
|
#include <mutex>
|
|
|
|
namespace xrpl {
|
|
|
|
// Monitors load levels and response times
|
|
|
|
// VFALCO TODO Rename this. Having both LoadManager and LoadMonitor is
|
|
// confusing.
|
|
//
|
|
class LoadMonitor
|
|
{
|
|
public:
|
|
explicit LoadMonitor(beast::Journal j);
|
|
|
|
void
|
|
addLoadSample(LoadEvent const& sample);
|
|
|
|
void
|
|
addSamples(int count, std::chrono::milliseconds latency);
|
|
|
|
void
|
|
setTargetLatency(std::chrono::milliseconds avg, std::chrono::milliseconds pk);
|
|
|
|
bool
|
|
isOverTarget(std::chrono::milliseconds avg, std::chrono::milliseconds peak);
|
|
|
|
// VFALCO TODO make this return the values in a struct.
|
|
struct Stats
|
|
{
|
|
Stats();
|
|
|
|
std::uint64_t count;
|
|
std::chrono::milliseconds latencyAvg;
|
|
std::chrono::milliseconds latencyPeak;
|
|
bool isOverloaded;
|
|
};
|
|
|
|
Stats
|
|
getStats();
|
|
|
|
bool
|
|
isOver();
|
|
|
|
private:
|
|
void
|
|
update();
|
|
|
|
std::mutex mutex_;
|
|
|
|
std::uint64_t mCounts;
|
|
int mLatencyEvents;
|
|
std::chrono::milliseconds mLatencyMSAvg;
|
|
std::chrono::milliseconds mLatencyMSPeak;
|
|
std::chrono::milliseconds mTargetLatencyAvg;
|
|
std::chrono::milliseconds mTargetLatencyPk;
|
|
UptimeClock::time_point mLastUpdate;
|
|
beast::Journal const j_;
|
|
};
|
|
|
|
} // namespace xrpl
|