We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ee0de9 + dbb848e commit 81fd1b0Copy full SHA for 81fd1b0
internal/psi/psi.go
@@ -13,27 +13,33 @@ const (
13
CPUSomeAvg10 uint = iota
14
CPUSomeAvg60
15
CPUSomeAvg300
16
+ CPUSomeTotal
17
CPUFullAvg10
18
CPUFullAvg60
19
CPUFullAvg300
20
+ CPUFullTotal
21
)
22
23
const (
24
IoSomeAvg10 uint = iota
25
IoSomeAvg60
26
IoSomeAvg300
27
+ IoSomeTotal
28
IoFullAvg10
29
IoFullAvg60
30
IoFullAvg300
31
+ IoFullTotal
32
33
34
35
MemorySomeAvg10 uint = iota
36
MemorySomeAvg60
37
MemorySomeAvg300
38
+ MemorySomeTotal
39
MemoryFullAvg10
40
MemoryFullAvg60
41
MemoryFullAvg300
42
+ MemoryFullTotal
43
44
45
type PressureValue struct {
0 commit comments