[metric][improve]improve metric (#693)
This commit is contained in:
parent
4f4b010bcc
commit
1f1ba5236e
|
@ -285,6 +285,18 @@ inline T &g_io_context_pool(
|
||||||
return *_g_io_context_pool;
|
return *_g_io_context_pool;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename T = io_context_pool>
|
||||||
|
inline std::shared_ptr<T> create_io_context_pool(
|
||||||
|
unsigned pool_size = std::thread::hardware_concurrency()) {
|
||||||
|
auto pool = std::make_shared<T>(pool_size);
|
||||||
|
std::thread thrd{[pool] {
|
||||||
|
pool->run();
|
||||||
|
}};
|
||||||
|
thrd.detach();
|
||||||
|
|
||||||
|
return pool;
|
||||||
|
}
|
||||||
|
|
||||||
template <typename T = io_context_pool>
|
template <typename T = io_context_pool>
|
||||||
inline T &g_block_io_context_pool(
|
inline T &g_block_io_context_pool(
|
||||||
unsigned pool_size = std::thread::hardware_concurrency()) {
|
unsigned pool_size = std::thread::hardware_concurrency()) {
|
||||||
|
|
|
@ -60,12 +60,8 @@ class counter_t : public metric_t {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::map<std::vector<std::string>, double,
|
metric_hash_map<double> value_map() override {
|
||||||
std::less<std::vector<std::string>>>
|
metric_hash_map<double> map;
|
||||||
value_map() override {
|
|
||||||
std::map<std::vector<std::string>, double,
|
|
||||||
std::less<std::vector<std::string>>>
|
|
||||||
map;
|
|
||||||
if (use_atomic_) {
|
if (use_atomic_) {
|
||||||
map = {atomic_value_map_.begin(), atomic_value_map_.end()};
|
map = {atomic_value_map_.begin(), atomic_value_map_.end()};
|
||||||
}
|
}
|
||||||
|
@ -192,9 +188,7 @@ class counter_t : public metric_t {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::map<std::vector<std::string>, std::atomic<double>,
|
metric_hash_map<std::atomic<double>> &atomic_value_map() {
|
||||||
std::less<std::vector<std::string>>>
|
|
||||||
&atomic_value_map() {
|
|
||||||
return atomic_value_map_;
|
return atomic_value_map_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -267,7 +261,12 @@ class counter_t : public metric_t {
|
||||||
label_val += value;
|
label_val += value;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
label_val += value;
|
if constexpr (is_atomic) {
|
||||||
|
label_val.fetch_add(value, std::memory_order_relaxed);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
label_val += value;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
} break;
|
} break;
|
||||||
case op_type_t::DEC:
|
case op_type_t::DEC:
|
||||||
|
@ -278,9 +277,13 @@ class counter_t : public metric_t {
|
||||||
else {
|
else {
|
||||||
label_val -= value;
|
label_val -= value;
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
label_val -= value;
|
if constexpr (is_atomic) {
|
||||||
|
label_val.fetch_sub(value, std::memory_order_relaxed);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
label_val -= value;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
case op_type_t::SET:
|
case op_type_t::SET:
|
||||||
|
@ -289,14 +292,10 @@ class counter_t : public metric_t {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::map<std::vector<std::string>, std::atomic<double>,
|
metric_hash_map<std::atomic<double>> atomic_value_map_;
|
||||||
std::less<std::vector<std::string>>>
|
|
||||||
atomic_value_map_;
|
|
||||||
std::atomic<double> default_lable_value_ = 0;
|
std::atomic<double> default_lable_value_ = 0;
|
||||||
|
|
||||||
std::mutex mtx_;
|
std::mutex mtx_;
|
||||||
std::map<std::vector<std::string>, double,
|
metric_hash_map<double> value_map_;
|
||||||
std::less<std::vector<std::string>>>
|
|
||||||
value_map_;
|
|
||||||
};
|
};
|
||||||
} // namespace ylt::metric
|
} // namespace ylt::metric
|
|
@ -100,11 +100,7 @@ class histogram_t : public metric_t {
|
||||||
|
|
||||||
auto get_bucket_counts() { return bucket_counts_; }
|
auto get_bucket_counts() { return bucket_counts_; }
|
||||||
|
|
||||||
std::map<std::vector<std::string>, double,
|
metric_hash_map<double> value_map() override { return sum_->value_map(); }
|
||||||
std::less<std::vector<std::string>>>
|
|
||||||
value_map() override {
|
|
||||||
return sum_->value_map();
|
|
||||||
}
|
|
||||||
|
|
||||||
void serialize(std::string &str) override {
|
void serialize(std::string &str) override {
|
||||||
if (!sum_->labels_name().empty()) {
|
if (!sum_->labels_name().empty()) {
|
||||||
|
|
|
@ -14,6 +14,11 @@
|
||||||
#include "async_simple/coro/Lazy.h"
|
#include "async_simple/coro/Lazy.h"
|
||||||
#include "async_simple/coro/SyncAwait.h"
|
#include "async_simple/coro/SyncAwait.h"
|
||||||
#include "cinatra/cinatra_log_wrapper.hpp"
|
#include "cinatra/cinatra_log_wrapper.hpp"
|
||||||
|
#if __has_include("ylt/coro_io/coro_io.hpp")
|
||||||
|
#include "ylt/coro_io/coro_io.hpp"
|
||||||
|
#else
|
||||||
|
#include "cinatra/ylt/coro_io/coro_io.hpp"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CINATRA_ENABLE_METRIC_JSON
|
#ifdef CINATRA_ENABLE_METRIC_JSON
|
||||||
namespace iguana {
|
namespace iguana {
|
||||||
|
@ -42,11 +47,33 @@ struct metric_filter_options {
|
||||||
bool is_white = true;
|
bool is_white = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct vector_hash {
|
||||||
|
size_t operator()(const std::vector<std::string>& vec) const {
|
||||||
|
unsigned int seed = 131;
|
||||||
|
unsigned int hash = 0;
|
||||||
|
|
||||||
|
for (const auto& str : vec) {
|
||||||
|
for (auto ch : str) {
|
||||||
|
hash = hash * seed + ch;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (hash & 0x7FFFFFFF);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
using metric_hash_map =
|
||||||
|
std::unordered_map<std::vector<std::string>, T, vector_hash>;
|
||||||
|
|
||||||
class metric_t {
|
class metric_t {
|
||||||
public:
|
public:
|
||||||
metric_t() = default;
|
metric_t() = default;
|
||||||
metric_t(MetricType type, std::string name, std::string help)
|
metric_t(MetricType type, std::string name, std::string help)
|
||||||
: type_(type), name_(std::move(name)), help_(std::move(help)) {}
|
: type_(type),
|
||||||
|
name_(std::move(name)),
|
||||||
|
help_(std::move(help)),
|
||||||
|
metric_created_time_(std::chrono::system_clock::now()) {}
|
||||||
metric_t(MetricType type, std::string name, std::string help,
|
metric_t(MetricType type, std::string name, std::string help,
|
||||||
std::vector<std::string> labels_name)
|
std::vector<std::string> labels_name)
|
||||||
: metric_t(type, std::move(name), std::move(help)) {
|
: metric_t(type, std::move(name), std::move(help)) {
|
||||||
|
@ -70,6 +97,8 @@ class metric_t {
|
||||||
|
|
||||||
MetricType metric_type() { return type_; }
|
MetricType metric_type() { return type_; }
|
||||||
|
|
||||||
|
auto get_created_time() { return metric_created_time_; }
|
||||||
|
|
||||||
std::string_view metric_name() {
|
std::string_view metric_name() {
|
||||||
switch (type_) {
|
switch (type_) {
|
||||||
case MetricType::Counter:
|
case MetricType::Counter:
|
||||||
|
@ -92,11 +121,7 @@ class metric_t {
|
||||||
return static_labels_;
|
return static_labels_;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual std::map<std::vector<std::string>, double,
|
virtual metric_hash_map<double> value_map() { return {}; }
|
||||||
std::less<std::vector<std::string>>>
|
|
||||||
value_map() {
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual void serialize(std::string& str) {}
|
virtual void serialize(std::string& str) {}
|
||||||
|
|
||||||
|
@ -173,6 +198,7 @@ class metric_t {
|
||||||
std::vector<std::string> labels_name_; // read only
|
std::vector<std::string> labels_name_; // read only
|
||||||
std::vector<std::string> labels_value_; // read only
|
std::vector<std::string> labels_value_; // read only
|
||||||
bool use_atomic_ = false;
|
bool use_atomic_ = false;
|
||||||
|
std::chrono::system_clock::time_point metric_created_time_{};
|
||||||
};
|
};
|
||||||
|
|
||||||
template <size_t ID = 0>
|
template <size_t ID = 0>
|
||||||
|
|
|
@ -3,8 +3,11 @@
|
||||||
|
|
||||||
#include "detail/time_window_quantiles.hpp"
|
#include "detail/time_window_quantiles.hpp"
|
||||||
#include "metric.hpp"
|
#include "metric.hpp"
|
||||||
#include "ylt/coro_io/coro_io.hpp"
|
#if __has_include("ylt/util/concurrentqueue.h")
|
||||||
#include "ylt/util/concurrentqueue.h"
|
#include "ylt/util/concurrentqueue.h"
|
||||||
|
#else
|
||||||
|
#include "cinatra/ylt/util/concurrentqueue.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace ylt::metric {
|
namespace ylt::metric {
|
||||||
#ifdef CINATRA_ENABLE_METRIC_JSON
|
#ifdef CINATRA_ENABLE_METRIC_JSON
|
||||||
|
@ -39,7 +42,6 @@ class summary_t : public metric_t {
|
||||||
metric_t(MetricType::Summary, std::move(name), std::move(help)),
|
metric_t(MetricType::Summary, std::move(name), std::move(help)),
|
||||||
max_age_(max_age),
|
max_age_(max_age),
|
||||||
age_buckets_(age_buckets) {
|
age_buckets_(age_buckets) {
|
||||||
init_executor();
|
|
||||||
init_block(block_);
|
init_block(block_);
|
||||||
block_->quantile_values_ =
|
block_->quantile_values_ =
|
||||||
std::make_shared<TimeWindowQuantiles>(quantiles_, max_age, age_buckets);
|
std::make_shared<TimeWindowQuantiles>(quantiles_, max_age, age_buckets);
|
||||||
|
@ -55,7 +57,6 @@ class summary_t : public metric_t {
|
||||||
std::move(labels_name)),
|
std::move(labels_name)),
|
||||||
max_age_(max_age),
|
max_age_(max_age),
|
||||||
age_buckets_(age_buckets) {
|
age_buckets_(age_buckets) {
|
||||||
init_executor();
|
|
||||||
init_block(labels_block_);
|
init_block(labels_block_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,7 +69,6 @@ class summary_t : public metric_t {
|
||||||
std::move(static_labels)),
|
std::move(static_labels)),
|
||||||
max_age_(max_age),
|
max_age_(max_age),
|
||||||
age_buckets_(age_buckets) {
|
age_buckets_(age_buckets) {
|
||||||
init_executor();
|
|
||||||
init_block(labels_block_);
|
init_block(labels_block_);
|
||||||
labels_block_->label_quantile_values_[labels_value_] =
|
labels_block_->label_quantile_values_[labels_value_] =
|
||||||
std::make_shared<TimeWindowQuantiles>(quantiles_, max_age, age_buckets);
|
std::make_shared<TimeWindowQuantiles>(quantiles_, max_age, age_buckets);
|
||||||
|
@ -85,9 +85,6 @@ class summary_t : public metric_t {
|
||||||
if (labels_block_) {
|
if (labels_block_) {
|
||||||
labels_block_->stop_ = true;
|
labels_block_->stop_ = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
work_ = nullptr;
|
|
||||||
thd_.join();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct block_t {
|
struct block_t {
|
||||||
|
@ -101,23 +98,27 @@ class summary_t : public metric_t {
|
||||||
struct labels_block_t {
|
struct labels_block_t {
|
||||||
std::atomic<bool> stop_ = false;
|
std::atomic<bool> stop_ = false;
|
||||||
moodycamel::ConcurrentQueue<summary_label_sample> sample_queue_;
|
moodycamel::ConcurrentQueue<summary_label_sample> sample_queue_;
|
||||||
|
metric_hash_map<std::shared_ptr<TimeWindowQuantiles>>
|
||||||
std::map<std::vector<std::string>, std::shared_ptr<TimeWindowQuantiles>,
|
|
||||||
std::less<std::vector<std::string>>>
|
|
||||||
label_quantile_values_;
|
label_quantile_values_;
|
||||||
std::map<std::vector<std::string>, std::uint64_t,
|
metric_hash_map<uint64_t> label_count_;
|
||||||
std::less<std::vector<std::string>>>
|
metric_hash_map<double> label_sum_;
|
||||||
label_count_;
|
|
||||||
std::map<std::vector<std::string>, double,
|
|
||||||
std::less<std::vector<std::string>>>
|
|
||||||
label_sum_;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
void observe(double value) {
|
void observe(double value) {
|
||||||
if (!labels_name_.empty()) {
|
if (!labels_name_.empty()) {
|
||||||
throw std::invalid_argument("not a default label metric");
|
throw std::invalid_argument("not a default label metric");
|
||||||
}
|
}
|
||||||
|
if (block_->sample_queue_.size_approx() >= 20000000) {
|
||||||
|
// TODO: record failed count.
|
||||||
|
return;
|
||||||
|
}
|
||||||
block_->sample_queue_.enqueue(value);
|
block_->sample_queue_.enqueue(value);
|
||||||
|
|
||||||
|
bool expected = false;
|
||||||
|
if (is_coro_started_.compare_exchange_strong(expected, true)) {
|
||||||
|
start(block_).via(excutor_->get_executor()).start([](auto &&) {
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void observe(std::vector<std::string> labels_value, double value) {
|
void observe(std::vector<std::string> labels_value, double value) {
|
||||||
|
@ -129,7 +130,17 @@ class summary_t : public metric_t {
|
||||||
throw std::invalid_argument("not equal with static label");
|
throw std::invalid_argument("not equal with static label");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (labels_block_->sample_queue_.size_approx() >= 20000000) {
|
||||||
|
// TODO: record failed count.
|
||||||
|
return;
|
||||||
|
}
|
||||||
labels_block_->sample_queue_.enqueue({std::move(labels_value), value});
|
labels_block_->sample_queue_.enqueue({std::move(labels_value), value});
|
||||||
|
|
||||||
|
bool expected = false;
|
||||||
|
if (is_coro_started_.compare_exchange_strong(expected, true)) {
|
||||||
|
start(labels_block_).via(excutor_->get_executor()).start([](auto &&) {
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async_simple::coro::Lazy<std::vector<double>> get_rates(double &sum,
|
async_simple::coro::Lazy<std::vector<double>> get_rates(double &sum,
|
||||||
|
@ -147,7 +158,7 @@ class summary_t : public metric_t {
|
||||||
vec.push_back(block_->quantile_values_->get(quantile.quantile));
|
vec.push_back(block_->quantile_values_->get(quantile.quantile));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
excutor_.get());
|
excutor_->get_executor());
|
||||||
|
|
||||||
co_return vec;
|
co_return vec;
|
||||||
}
|
}
|
||||||
|
@ -178,19 +189,17 @@ class summary_t : public metric_t {
|
||||||
vec.push_back(it->second->get(quantile.quantile));
|
vec.push_back(it->second->get(quantile.quantile));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
excutor_.get());
|
excutor_->get_executor());
|
||||||
|
|
||||||
co_return vec;
|
co_return vec;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::map<std::vector<std::string>, double,
|
metric_hash_map<double> value_map() override {
|
||||||
std::less<std::vector<std::string>>>
|
|
||||||
value_map() override {
|
|
||||||
auto ret = async_simple::coro::syncAwait(coro_io::post(
|
auto ret = async_simple::coro::syncAwait(coro_io::post(
|
||||||
[this] {
|
[this] {
|
||||||
return labels_block_->label_sum_;
|
return labels_block_->label_sum_;
|
||||||
},
|
},
|
||||||
excutor_.get()));
|
excutor_->get_executor()));
|
||||||
return ret.value();
|
return ret.value();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -199,7 +208,7 @@ class summary_t : public metric_t {
|
||||||
[this] {
|
[this] {
|
||||||
return block_->sum_;
|
return block_->sum_;
|
||||||
},
|
},
|
||||||
excutor_.get());
|
excutor_->get_executor());
|
||||||
co_return ret.value();
|
co_return ret.value();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -208,7 +217,7 @@ class summary_t : public metric_t {
|
||||||
[this] {
|
[this] {
|
||||||
return block_->count_;
|
return block_->count_;
|
||||||
},
|
},
|
||||||
excutor_.get());
|
excutor_->get_executor());
|
||||||
co_return ret.value();
|
co_return ret.value();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -275,19 +284,10 @@ class summary_t : public metric_t {
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
private:
|
private:
|
||||||
void init_executor() {
|
|
||||||
work_ = std::make_shared<asio::io_context::work>(ctx_);
|
|
||||||
thd_ = std::thread([this] {
|
|
||||||
ctx_.run();
|
|
||||||
});
|
|
||||||
excutor_ =
|
|
||||||
std::make_unique<coro_io::ExecutorWrapper<>>(ctx_.get_executor());
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
void init_block(std::shared_ptr<T> &block) {
|
void init_block(std::shared_ptr<T> &block) {
|
||||||
block = std::make_shared<T>();
|
block = std::make_shared<T>();
|
||||||
start(block).via(excutor_.get()).start([](auto &&) {
|
start(block).via(excutor_->get_executor()).start([](auto &&) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -306,24 +306,34 @@ class summary_t : public metric_t {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
co_await async_simple::coro::Yield{};
|
|
||||||
|
|
||||||
if (block->sample_queue_.size_approx() == 0) {
|
if (block->sample_queue_.size_approx() == 0) {
|
||||||
co_await coro_io::sleep_for(std::chrono::milliseconds(5),
|
is_coro_started_ = false;
|
||||||
excutor_.get());
|
if (block->sample_queue_.size_approx() == 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool expected = false;
|
||||||
|
if (!is_coro_started_.compare_exchange_strong(expected, true)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
co_await async_simple::coro::Yield{};
|
||||||
}
|
}
|
||||||
|
|
||||||
co_return;
|
co_return;
|
||||||
}
|
}
|
||||||
|
|
||||||
async_simple::coro::Lazy<void> start(std::shared_ptr<labels_block_t> block) {
|
async_simple::coro::Lazy<void> start(
|
||||||
|
std::shared_ptr<labels_block_t> label_block) {
|
||||||
summary_label_sample sample;
|
summary_label_sample sample;
|
||||||
size_t count = 1000000;
|
size_t count = 1000000;
|
||||||
while (!block->stop_) {
|
while (!label_block->stop_) {
|
||||||
size_t index = 0;
|
size_t index = 0;
|
||||||
while (block->sample_queue_.try_dequeue(sample)) {
|
while (label_block->sample_queue_.try_dequeue(sample)) {
|
||||||
auto &ptr = block->label_quantile_values_[sample.labels_value];
|
auto &ptr = label_block->label_quantile_values_[sample.labels_value];
|
||||||
|
|
||||||
if (ptr == nullptr) {
|
if (ptr == nullptr) {
|
||||||
ptr = std::make_shared<TimeWindowQuantiles>(quantiles_, max_age_,
|
ptr = std::make_shared<TimeWindowQuantiles>(quantiles_, max_age_,
|
||||||
|
@ -332,8 +342,8 @@ class summary_t : public metric_t {
|
||||||
|
|
||||||
ptr->insert(sample.value);
|
ptr->insert(sample.value);
|
||||||
|
|
||||||
block->label_count_[sample.labels_value] += 1;
|
label_block->label_count_[sample.labels_value] += 1;
|
||||||
block->label_sum_[sample.labels_value] += sample.value;
|
label_block->label_sum_[sample.labels_value] += sample.value;
|
||||||
index++;
|
index++;
|
||||||
if (index == count) {
|
if (index == count) {
|
||||||
break;
|
break;
|
||||||
|
@ -342,10 +352,20 @@ class summary_t : public metric_t {
|
||||||
|
|
||||||
co_await async_simple::coro::Yield{};
|
co_await async_simple::coro::Yield{};
|
||||||
|
|
||||||
if (block->sample_queue_.size_approx() == 0) {
|
if (label_block->sample_queue_.size_approx() == 0) {
|
||||||
co_await coro_io::sleep_for(std::chrono::milliseconds(5),
|
is_coro_started_ = false;
|
||||||
excutor_.get());
|
if (label_block->sample_queue_.size_approx() == 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool expected = false;
|
||||||
|
if (!is_coro_started_.compare_exchange_strong(expected, true)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
co_await async_simple::coro::Yield{};
|
||||||
}
|
}
|
||||||
|
|
||||||
co_return;
|
co_return;
|
||||||
|
@ -362,7 +382,7 @@ class summary_t : public metric_t {
|
||||||
[this] {
|
[this] {
|
||||||
return labels_block_->label_sum_;
|
return labels_block_->label_sum_;
|
||||||
},
|
},
|
||||||
excutor_.get());
|
excutor_->get_executor());
|
||||||
|
|
||||||
for (auto &[labels_value, sum_val] : sum_map.value()) {
|
for (auto &[labels_value, sum_val] : sum_map.value()) {
|
||||||
double sum = 0;
|
double sum = 0;
|
||||||
|
@ -403,7 +423,7 @@ class summary_t : public metric_t {
|
||||||
[this] {
|
[this] {
|
||||||
return labels_block_->label_sum_;
|
return labels_block_->label_sum_;
|
||||||
},
|
},
|
||||||
excutor_.get());
|
excutor_->get_executor());
|
||||||
|
|
||||||
json_summary_t summary{name_, help_, std::string(metric_name())};
|
json_summary_t summary{name_, help_, std::string(metric_name())};
|
||||||
|
|
||||||
|
@ -430,11 +450,10 @@ class summary_t : public metric_t {
|
||||||
Quantiles quantiles_; // readonly
|
Quantiles quantiles_; // readonly
|
||||||
std::shared_ptr<block_t> block_;
|
std::shared_ptr<block_t> block_;
|
||||||
std::shared_ptr<labels_block_t> labels_block_;
|
std::shared_ptr<labels_block_t> labels_block_;
|
||||||
std::unique_ptr<coro_io::ExecutorWrapper<>> excutor_ = nullptr;
|
static inline std::shared_ptr<coro_io::io_context_pool> excutor_ =
|
||||||
std::shared_ptr<asio::io_context::work> work_;
|
coro_io::create_io_context_pool(1);
|
||||||
asio::io_context ctx_;
|
|
||||||
std::thread thd_;
|
|
||||||
std::chrono::milliseconds max_age_;
|
std::chrono::milliseconds max_age_;
|
||||||
int age_buckets_;
|
int age_buckets_;
|
||||||
|
std::atomic<bool> is_coro_started_ = false;
|
||||||
};
|
};
|
||||||
} // namespace ylt::metric
|
} // namespace ylt::metric
|
Loading…
Reference in New Issue