Skip to content

Commit fe88474

Browse files
committed
Doc: Kubelet PSI metrics feature graduates to Beta
1 parent e087053 commit fe88474

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

content/en/docs/concepts/cluster-administration/system-metrics.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,11 @@ flag to expose these alpha stability metrics.
179179

180180
### kubelet Pressure Stall Information (PSI) metrics
181181

182-
{{< feature-state for_k8s_version="v1.33" state="alpha" >}}
182+
{{< feature-state for_k8s_version="v1.34" state="beta" >}}
183183

184-
As an alpha feature, Kubernetes lets you configure kubelet to collect Linux kernel
184+
As a beta feature, Kubernetes lets you configure kubelet to collect Linux kernel
185185
[Pressure Stall Information](https://docs.kernel.org/accounting/psi.html)
186-
(PSI) for CPU, memory and IO usage.
186+
(PSI) for CPU, memory and I/O usage.
187187
The information is collected at node, pod and container level.
188188
The metrics are exposed at the `/metrics/cadvisor` endpoint with the following names:
189189

@@ -196,8 +196,7 @@ container_pressure_io_stalled_seconds_total
196196
container_pressure_io_waiting_seconds_total
197197
```
198198

199-
You must enable the `KubeletPSI` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/)
200-
to use this feature. The information is also exposed in the
199+
This feature is enabled by default, by setting the `KubeletPSI` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/). The information is also exposed in the
201200
[Summary API](/docs/reference/instrumentation/node-metrics#psi).
202201

203202
#### Requirements

content/en/docs/reference/command-line-tools-reference/feature-gates/KubeletPSI.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,9 @@ stages:
99
- stage: alpha
1010
defaultValue: false
1111
fromVersion: "1.33"
12+
toVersion: "1.33"
13+
- stage: beta
14+
defaultValue: true
15+
fromVersion: "1.34"
1216
---
1317
Enable kubelet to surface Pressure Stall Information (PSI) metrics in the Summary API and Prometheus metrics.

content/en/docs/reference/instrumentation/node-metrics.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,13 @@ the kubelet [fetches Pod- and container-level metric data using CRI](/docs/refer
4545

4646
## Pressure Stall Information (PSI) {#psi}
4747

48-
{{< feature-state for_k8s_version="v1.33" state="alpha" >}}
48+
{{< feature-state for_k8s_version="v1.34" state="beta" >}}
4949

50-
As an alpha feature, Kubernetes lets you configure kubelet to collect Linux kernel
50+
As a beta feature, Kubernetes lets you configure kubelet to collect Linux kernel
5151
[Pressure Stall Information](https://docs.kernel.org/accounting/psi.html)
52-
(PSI) for CPU, memory and IO usage. The information is collected at node, pod and container level.
52+
(PSI) for CPU, memory, and I/O usage. The information is collected at node, pod and container level.
5353
See [Summary API](/docs/reference/config-api/kubelet-stats.v1alpha1/) for detailed schema.
54-
You must enable the `KubeletPSI` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/)
55-
to use this feature. The information is also exposed in
54+
This feature is enabled by default, by setting the `KubeletPSI` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/). The information is also exposed in
5655
[Prometheus metrics](/docs/concepts/cluster-administration/system-metrics#psi-metrics).
5756

5857
### Requirements

0 commit comments

Comments
 (0)