ClickHouse/dbms/src/Common/TaskStatsInfoGetter.h
2018-08-22 02:56:55 +03:00

44 lines
859 B
C++

#pragma once
#include <Core/Types.h>
struct taskstats;
namespace DB
{
class Exception;
/// Get taskstat info from OS kernel via Netlink protocol.
class TaskStatsInfoGetter
{
public:
TaskStatsInfoGetter();
TaskStatsInfoGetter(const TaskStatsInfoGetter &) = delete;
void getStat(::taskstats & stat, int tid = -1);
~TaskStatsInfoGetter();
/// Make a syscall and returns Linux thread id
static int getCurrentTID();
/// Whether the current process has permissions (sudo or cap_net_admin capabilties) to get taskstats info
static bool checkPermissions();
private:
/// Caches current thread tid to avoid extra sys calls
int getDefaultTID();
int default_tid = -1;
void getStatImpl(int tid, ::taskstats & out_stats);
void init();
int netlink_socket_fd = -1;
UInt16 netlink_family_id = 0;
};
}