2016-01-17 13:34:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <condition_variable>
|
2017-03-21 19:08:09 +00:00
|
|
|
#include <mutex>
|
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
|
|
|
#include <vector>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/ProfileEvents.h>
|
2016-01-17 13:34:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2017-08-24 14:51:13 +00:00
|
|
|
|
2016-10-24 04:06:27 +00:00
|
|
|
class AsynchronousMetrics;
|
2017-08-24 14:51:13 +00:00
|
|
|
class Context;
|
|
|
|
|
2016-10-24 04:06:27 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/** Automatically sends
|
2016-01-20 21:32:01 +00:00
|
|
|
* - 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:
|
2017-08-24 14:51:13 +00:00
|
|
|
MetricsTransmitter(Context & context_,
|
|
|
|
const AsynchronousMetrics & async_metrics_,
|
|
|
|
const std::string & config_name_)
|
|
|
|
: context(context_)
|
|
|
|
, async_metrics(async_metrics_)
|
|
|
|
, config_name(config_name_)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
~MetricsTransmitter();
|
2016-01-17 13:34:36 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
void run();
|
|
|
|
void transmit(std::vector<ProfileEvents::Count> & prev_counters);
|
2016-01-17 13:34:36 +00:00
|
|
|
|
2017-08-24 14:51:13 +00:00
|
|
|
Context & context;
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const AsynchronousMetrics & async_metrics;
|
|
|
|
const std::string config_name;
|
2016-01-17 13:34:36 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool quit = false;
|
|
|
|
std::mutex mutex;
|
|
|
|
std::condition_variable cond;
|
|
|
|
std::thread thread{&MetricsTransmitter::run, this};
|
2016-01-17 13:34:36 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto profile_events_path_prefix = "ClickHouse.ProfileEvents.";
|
|
|
|
static constexpr auto current_metrics_path_prefix = "ClickHouse.Metrics.";
|
|
|
|
static constexpr auto asynchronous_metrics_path_prefix = "ClickHouse.AsynchronousMetrics.";
|
2016-01-17 13:34:36 +00:00
|
|
|
};
|
2017-08-24 14:51:13 +00:00
|
|
|
|
2016-01-17 13:34:36 +00:00
|
|
|
}
|