ClickHouse/src/Common/TaskStatsInfoGetter.h
Azat Khuzhin 278101fc0c Add a comment for taskstruct netlink interface rounding to KiB
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-04-25 08:49:17 +03:00

37 lines
811 B
C++

#pragma once
#include <sys/types.h>
#include <base/types.h>
#include <boost/noncopyable.hpp>
struct taskstats;
namespace DB
{
/// Get taskstat info from OS kernel via Netlink protocol.
///
/// NOTE: unlike procfs interface, netlink interface, rounds some values to KiBs [1].
///
/// [1]: https://elixir.bootlin.com/linux/v5.18-rc4/source/kernel/tsacct.c#L101
///
class TaskStatsInfoGetter : private boost::noncopyable
{
public:
TaskStatsInfoGetter();
~TaskStatsInfoGetter();
void getStat(::taskstats & out_stats, pid_t tid) const;
/// Whether the current process has permissions (sudo or cap_net_admin capabilities) to get taskstats info
static bool checkPermissions();
#if defined(OS_LINUX)
private:
int netlink_socket_fd = -1;
UInt16 taskstats_family_id = 0;
#endif
};
}