2016-01-17 13:34:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-11-01 17:56:25 +00:00
|
|
|
#include <vector>
|
2016-01-17 13:34:36 +00:00
|
|
|
#include <thread>
|
|
|
|
#include <mutex>
|
|
|
|
#include <condition_variable>
|
|
|
|
|
|
|
|
#include <DB/Common/ProfileEvents.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-10-24 04:06:27 +00:00
|
|
|
class AsynchronousMetrics;
|
|
|
|
|
2016-01-20 21:32:01 +00:00
|
|
|
/** Automatically sends
|
|
|
|
* - difference of ProfileEvents;
|
|
|
|
* - values of CurrentMetrics;
|
2016-10-24 04:06:27 +00:00
|
|
|
* - values of AsynchronousMetrics;
|
2016-01-20 21:32:01 +00:00
|
|
|
* to Graphite at beginning of every minute.
|
2016-01-17 13:34:36 +00:00
|
|
|
*/
|
|
|
|
class MetricsTransmitter
|
|
|
|
{
|
|
|
|
public:
|
2016-10-24 04:06:27 +00:00
|
|
|
MetricsTransmitter(const AsynchronousMetrics & async_metrics_) : async_metrics(async_metrics_) {}
|
2016-01-17 13:34:36 +00:00
|
|
|
~MetricsTransmitter();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void run();
|
2016-11-01 17:56:25 +00:00
|
|
|
void transmit(std::vector<ProfileEvents::Count> & prev_counters);
|
2016-01-17 13:34:36 +00:00
|
|
|
|
2016-10-24 04:06:27 +00:00
|
|
|
const AsynchronousMetrics & async_metrics;
|
2016-01-17 13:34:36 +00:00
|
|
|
|
|
|
|
bool quit = false;
|
|
|
|
std::mutex mutex;
|
|
|
|
std::condition_variable cond;
|
|
|
|
std::thread thread {&MetricsTransmitter::run, this};
|
|
|
|
|
2016-10-24 02:02:37 +00:00
|
|
|
static constexpr auto profile_events_path_prefix = "ClickHouse.ProfileEvents.";
|
|
|
|
static constexpr auto current_metrics_path_prefix = "ClickHouse.Metrics.";
|
2016-10-24 04:06:27 +00:00
|
|
|
static constexpr auto asynchronous_metrics_path_prefix = "ClickHouse.AsynchronousMetrics.";
|
2016-01-17 13:34:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|