mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Per XLS-0095, we are taking steps to rename ripple(d) to xrpl(d). This change specifically removes all copyright notices referencing Ripple, XRPLF, and certain affiliated contributors upon mutual agreement, so the notice in the LICENSE.md file applies throughout. Copyright notices referencing external contributions remain as-is. Duplicate verbiage is also removed.
35 lines
903 B
C++
35 lines
903 B
C++
#ifndef BEAST_INSIGHT_STATSDCOLLECTOR_H_INCLUDED
|
|
#define BEAST_INSIGHT_STATSDCOLLECTOR_H_INCLUDED
|
|
|
|
#include <xrpl/beast/insight/Collector.h>
|
|
#include <xrpl/beast/net/IPEndpoint.h>
|
|
#include <xrpl/beast/utility/Journal.h>
|
|
|
|
namespace beast {
|
|
namespace insight {
|
|
|
|
/** A Collector that reports metrics to a StatsD server.
|
|
Reference:
|
|
https://github.com/b/statsd_spec
|
|
*/
|
|
class StatsDCollector : public Collector
|
|
{
|
|
public:
|
|
explicit StatsDCollector() = default;
|
|
|
|
/** Create a StatsD collector.
|
|
@param address The IP address and port of the StatsD server.
|
|
@param prefix A string pre-pended before each metric name.
|
|
@param journal Destination for logging output.
|
|
*/
|
|
static std::shared_ptr<StatsDCollector>
|
|
New(IP::Endpoint const& address,
|
|
std::string const& prefix,
|
|
Journal journal);
|
|
};
|
|
|
|
} // namespace insight
|
|
} // namespace beast
|
|
|
|
#endif
|