aboutsummaryrefslogtreecommitdiffstats
path: root/pcp/PCPMachine.h
blob: 6518bd49f0c60424cb0ae08dffc4e560195520f7 (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
#ifndef HEADER_PCPMachine
#define HEADER_PCPMachine
/*
htop - PCPMachine.h
(C) 2014 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
in the source distribution for its full text.
*/

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

#include "Hashtable.h"
#include "Machine.h"
#include "UsersTable.h"

#include "pcp/Platform.h"
#include "linux/ZswapStats.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 PCPMachine_ {
   Machine super;
   int smaps_flag;
   double period;
   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;
   /*ZramStats zram; -- not needed, calculated in-line in Platform.c */
   ZswapStats zswap;
} PCPMachine;

#endif

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