We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 400c397 commit f1e0e83Copy full SHA for f1e0e83
CHANGELOG.md
@@ -5,6 +5,10 @@
5
* [ENHANCEMENT]
6
* [BUGFIX]
7
8
+## 1.8.2 / 2024-06-19
9
+
10
+* [BUGFIX] Fix CPU pressure metric collection #3054
11
12
## 1.8.1 / 2024-05-16
13
14
* [BUGFIX] Fix CPU seconds on Solaris #2963
VERSION
@@ -1 +1 @@
1
-1.8.1
+1.8.2
collector/pressure_linux.go
@@ -106,7 +106,7 @@ func (c *pressureStatsCollector) Update(ch chan<- prometheus.Metric) error {
106
level.Debug(c.logger).Log("msg", "pressure information returned no 'some' data")
107
return ErrNoData
108
}
109
- if vals.Full == nil {
+ if vals.Full == nil && res != "cpu" {
110
level.Debug(c.logger).Log("msg", "pressure information returned no 'full' data")
111
112
0 commit comments