mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
|
#pragma once
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <boost/noncopyable.hpp>
|
||
|
|
||
|
|
||
|
#if defined(__linux__)
|
||
|
struct taskstats;
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
/// Provides several essential per-task metrics by reading data from Procfs (when available).
|
||
|
class ProcfsMetricsProvider : private boost::noncopyable
|
||
|
{
|
||
|
public:
|
||
|
ProcfsMetricsProvider(const pid_t /*tid*/);
|
||
|
~ProcfsMetricsProvider();
|
||
|
|
||
|
/// Updates only a part of taskstats struct's fields:
|
||
|
/// - cpu_run_virtual_total, cpu_delay_total (when /proc/thread-self/schedstat is available)
|
||
|
/// - blkio_delay_total (when /proc/thread-self/stat is available)
|
||
|
/// - rchar, wchar, read_bytes, write_bytes (when /prod/thread-self/io is available)
|
||
|
/// See: man procfs
|
||
|
void getTaskStats(::taskstats & out_stats) const;
|
||
|
|
||
|
/// Tells whether this metrics (via Procfs) is provided on the current platform
|
||
|
static bool isAvailable() noexcept;
|
||
|
|
||
|
private:
|
||
|
void readParseAndSetThreadCPUStat(::taskstats & out_stats, char *, size_t) const;
|
||
|
void readParseAndSetThreadBlkIOStat(::taskstats & out_stats, char *, size_t) const;
|
||
|
void readParseAndSetThreadIOStat(::taskstats & out_stats, char *, size_t) const;
|
||
|
|
||
|
private:
|
||
|
int thread_schedstat_fd = -1;
|
||
|
int thread_stat_fd = -1;
|
||
|
int thread_io_fd = -1;
|
||
|
|
||
|
/// This field is used for compatibility with TasksStatsCounters::incrementProfileEvents()
|
||
|
unsigned short stats_version = 1;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
#endif
|