File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 5
5
* [ ENHANCEMENT]
6
6
* [ BUGFIX]
7
7
8
+ ## 1.8.2 / 2024-06-19
9
+
10
+ * [ BUGFIX] Fix CPU pressure metric collection #3054
11
+
8
12
## 1.8.1 / 2024-05-16
9
13
10
14
* [ BUGFIX] Fix CPU seconds on Solaris #2963
Original file line number Diff line number Diff line change 1
- 1.8.1
1
+ 1.8.2
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ func (c *pressureStatsCollector) Update(ch chan<- prometheus.Metric) error {
106
106
level .Debug (c .logger ).Log ("msg" , "pressure information returned no 'some' data" )
107
107
return ErrNoData
108
108
}
109
- if vals .Full == nil {
109
+ if vals .Full == nil && res != "cpu" {
110
110
level .Debug (c .logger ).Log ("msg" , "pressure information returned no 'full' data" )
111
111
return ErrNoData
112
112
}
You can’t perform that action at this time.
0 commit comments