summaryrefslogtreecommitdiffstats
path: root/pcp/PCPProcessList.h
blob: a3a7372aff80832b9036cbfa51006b049289135c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef HEADER_PCPProcessList
#define HEADER_PCPProcessList
/*
htop - PCPProcessList.h
(C) 2014 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
in the source distribution for its full text.
*/

#include "config.h" // IWYU pragma: keep

#include <stdbool.h>
#include <sys/types.h>

#include "Hashtable.h"
#include "ProcessList.h"
#include "UsersTable.h"

#include "pcp/Platform.h"
#include "zfs/ZfsArcStats.h"


typedef enum CPUMetric_ {
   CPU_TOTAL_TIME,
   CPU_USER_TIME,
   CPU_SYSTEM_TIME,
   CPU_SYSTEM_ALL_TIME,
   CPU_IDLE_ALL_TIME,
   CPU_IDLE_TIME,
   CPU_NICE_TIME,
   CPU_IOWAIT_TIME,
   CPU_IRQ_TIME,
   CPU_SOFTIRQ_TIME,
   CPU_STEAL_TIME,
   CPU_GUEST_TIME,
   CPU_GUESTNICE_TIME,

   CPU_TOTAL_PERIOD,
   CPU_USER_PERIOD,
   CPU_SYSTEM_PERIOD,
   CPU_SYSTEM_ALL_PERIOD,
   CPU_IDLE_ALL_PERIOD,
   CPU_IDLE_PERIOD,
   CPU_NICE_PERIOD,
   CPU_IOWAIT_PERIOD,
   CPU_IRQ_PERIOD,
   CPU_SOFTIRQ_PERIOD,
   CPU_STEAL_PERIOD,
   CPU_GUEST_PERIOD,
   CPU_GUESTNICE_PERIOD,

   CPU_FREQUENCY,

   CPU_METRIC_COUNT
} CPUMetric;

typedef struct PCPProcessList_ {
   ProcessList super;
   double timestamp;     /* previous sample timestamp */
   pmAtomValue* cpu;     /* aggregate values for each metric */
   pmAtomValue** percpu; /* per-processor values for each metric */
   pmAtomValue* values;  /* per-processor buffer for just one metric */
   ZfsArcStats zfs;
} PCPProcessList;

ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* dynamicMeters, Hashtable* dynamicColumns, Hashtable* pidMatchList, uid_t userId);

void ProcessList_delete(ProcessList* pl);

void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate);

bool ProcessList_isCPUonline(const ProcessList* super, unsigned int id);

#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy