Skip to content

Commit a523e03

Browse files
authored
Update articles/spring-apps/basic-standard/concept-metrics.md
1 parent 520ab8e commit a523e03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/spring-apps/basic-standard/concept-metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ The following tables show the available metrics and details.
9999
>[!div class="mx-tdCol2BreakAll"]
100100
>| Name | Spring Boot Actuator metric name | Unit | Description |
101101
>|----|----|----|------------|
102-
>| `system.cpu.usage` | `system.cpu.usage` | Percent | **[Obsolete]** Recent CPU usage for the whole system. The metric is deprecating and not suggested using since the accuracy is not reliable. Use `App CPU Usage` instead. The value is a double in the [0.0,1.0] interval. A value of 0.0 means that all CPUs were idle during the recent period of time observed, while a value of 1.0 means that all CPUs were actively running 100% of the time during the recent period being observed.|
103-
>| `process.cpu.usage` | App CPU Usage Percentage | Percent | **[Obsolete]** Recent CPU usage for the Java Virtual Machine process. The metric is deprecating and not suggested using since the accuracy is not reliable. Use `App CPU Usage` instead. The value is a double in the [0.0,1.0] interval. A value of 0.0 means that none of the CPUs were running threads from the JVM process during the recent period of time observed, while a value of 1.0 means that all CPUs were actively running threads from the JVM 100% of the time during the recent period being observed. Threads from the JVM include the application threads as well as the JVM internal threads.|
102+
>| `system.cpu.usage` | `system.cpu.usage` | Percent | **[Obsolete]** Recent CPU usage for the whole system. This metric is deprecated because the accuracy isn't reliable. Use `App CPU Usage` instead. The value is a double in the [0.0,1.0] interval. A value of 0.0 means that all CPUs were idle during the recent period of time observed, while a value of 1.0 means that all CPUs were actively running 100% of the time during the recent period being observed. |
103+
>| `process.cpu.usage` | App CPU Usage Percentage | Percent | **[Obsolete]** Recent CPU usage for the Java Virtual Machine process. The metric is deprecated because the accuracy isn't reliable. Use `App CPU Usage` instead. The value is a double in the [0.0,1.0] interval. A value of 0.0 means that none of the CPUs were running threads from the JVM process during the recent period of time observed, while a value of 1.0 means that all CPUs were actively running threads from the JVM 100% of the time during the recent period being observed. Threads from the JVM include the application threads as well as the JVM internal threads. |
104104
>| App CPU Usage | | Percent | The ratio of CPU time used in cores to the total CPU limit. It represents the proportion of CPU resources consumed by a k8s container, mainly for the JVM process. This value is a double in the [0.0,1.0] interval. A value of 0.0 means that none of the CPUs were running threads from the JVM process during the recent period of time observed, while a value of 1.0 means that all CPUs were actively running threads from the JVM 100% of the time during the recent period being observed. Threads from the JVM include the application threads as well as the JVM internal threads.|
105105
>| App CPU Usage (Deprecated) | | Percent | Deprecated metric of App CPU Usage. Use the new App CPU Usage metric instead.|
106106
>| App Memory Usage | | Percent | Recent memory usage of the JVM process against the memory allocated to this app. This value is a double in the [0.0,1.0] interval. A value of 0.0 means that none of the memory was allocated by threads from the JVM process during the recent period of time observed, while a value of 1.0 means that all memory was allocated by threads from the JVM 100% of the time during the recent period being observed. Threads from the JVM include the application threads as well as the JVM internal threads.|

0 commit comments

Comments
 (0)