ClickHouse/dbms/src/Server/MetricsTransmitter.cpp

80 lines
1.6 KiB
C++
Raw Normal View History

2016-01-17 13:34:36 +00:00
#include "MetricsTransmitter.h"
#include <daemon/Daemon.h>
#include <DB/Common/setThreadName.h>
#include <DB/Common/CurrentMetrics.h>
2016-01-17 13:34:36 +00:00
namespace DB
{
MetricsTransmitter::~MetricsTransmitter()
{
try
{
{
std::lock_guard<std::mutex> lock{mutex};
quit = true;
}
cond.notify_one();
thread.join();
}
catch (...)
{
DB::tryLogCurrentException(__FUNCTION__);
}
}
void MetricsTransmitter::run()
{
setThreadName("MetricsTransmit");
2016-01-17 13:34:36 +00:00
const auto get_next_minute = [] {
return std::chrono::time_point_cast<std::chrono::minutes, std::chrono::system_clock>(
std::chrono::system_clock::now() + std::chrono::minutes(1)
);
};
std::unique_lock<std::mutex> lock{mutex};
while (true)
{
if (cond.wait_until(lock, get_next_minute(), [this] { return quit; }))
break;
transmit();
2016-01-17 13:34:36 +00:00
}
}
void MetricsTransmitter::transmit()
2016-01-17 13:34:36 +00:00
{
GraphiteWriter::KeyValueVector<size_t> key_vals{};
key_vals.reserve(ProfileEvents::END + CurrentMetrics::END);
2016-01-17 13:34:36 +00:00
for (size_t i = 0; i < ProfileEvents::END; ++i)
{
const auto counter = ProfileEvents::counters[i];
const auto counter_increment = counter - prev_counters[i];
prev_counters[i] = counter;
std::string key {ProfileEvents::getDescription(static_cast<ProfileEvents::Event>(i))};
2016-01-17 13:34:36 +00:00
key_vals.emplace_back(event_path_prefix + key, counter_increment);
}
for (size_t i = 0; i < CurrentMetrics::END; ++i)
{
const auto value = CurrentMetrics::values[i];
std::string key {CurrentMetrics::getDescription(static_cast<CurrentMetrics::Metric>(i))};
key_vals.emplace_back(metrics_path_prefix + key, value);
}
2016-01-17 13:34:36 +00:00
Daemon::instance().writeToGraphite(key_vals);
}
}