Skip to content

Commit 81fd1b0

Browse files
Merge pull request #59 from NETWAYS/fix/psi_perfdata_indices
Add missing indices for totals
2 parents 8ee0de9 + dbb848e commit 81fd1b0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

internal/psi/psi.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,33 @@ const (
1313
CPUSomeAvg10 uint = iota
1414
CPUSomeAvg60
1515
CPUSomeAvg300
16+
CPUSomeTotal
1617
CPUFullAvg10
1718
CPUFullAvg60
1819
CPUFullAvg300
20+
CPUFullTotal
1921
)
2022

2123
const (
2224
IoSomeAvg10 uint = iota
2325
IoSomeAvg60
2426
IoSomeAvg300
27+
IoSomeTotal
2528
IoFullAvg10
2629
IoFullAvg60
2730
IoFullAvg300
31+
IoFullTotal
2832
)
2933

3034
const (
3135
MemorySomeAvg10 uint = iota
3236
MemorySomeAvg60
3337
MemorySomeAvg300
38+
MemorySomeTotal
3439
MemoryFullAvg10
3540
MemoryFullAvg60
3641
MemoryFullAvg300
42+
MemoryFullTotal
3743
)
3844

3945
type PressureValue struct {

0 commit comments

Comments
 (0)