mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
38 lines
974 B
C++
38 lines
974 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Common/AsynchronousMetrics.h>
|
||
|
#include <Interpreters/Context_fwd.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class ServerAsynchronousMetrics : public AsynchronousMetrics, WithContext
|
||
|
{
|
||
|
public:
|
||
|
ServerAsynchronousMetrics(
|
||
|
ContextPtr global_context_,
|
||
|
int update_period_seconds,
|
||
|
int heavy_metrics_update_period_seconds,
|
||
|
const ProtocolServerMetricsFunc & protocol_server_metrics_func_);
|
||
|
private:
|
||
|
void updateImpl(AsynchronousMetricValues & new_values) override;
|
||
|
void logImpl(AsynchronousMetricValues & new_values) override;
|
||
|
|
||
|
const Duration heavy_metric_update_period;
|
||
|
TimePoint heavy_metric_previous_update_time;
|
||
|
|
||
|
struct DetachedPartsStats
|
||
|
{
|
||
|
size_t count;
|
||
|
size_t detached_by_user;
|
||
|
};
|
||
|
|
||
|
DetachedPartsStats detached_parts_stats{};
|
||
|
|
||
|
void updateDetachedPartsStats();
|
||
|
void updateHeavyMetricsIfNeeded(TimePoint current_time, TimePoint update_time, AsynchronousMetricValues & new_values);
|
||
|
};
|
||
|
|
||
|
}
|