Skip to content

Commit c616ad0

Browse files
committed
Test format for new metric names
1 parent eb2066e commit c616ad0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/spring-cloud/spring-cloud-concept-metrics.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ The following tables show the available metrics and details.
8686
>[!div class="mx-tdCol2BreakAll"]
8787
>| Name | Spring Actuator Metric Name | Unit | Details |
8888
>|----|----|----|------------|
89-
>| Tomcat Global Error | tomcat.global.error | Count | Number of errors occurs of processed requests |
89+
>| tomcat.global.error<br><br>Tomcat Global Error (deprecated) | tomcat.global.error | Count | Number of errors occurs of processed requests |
9090
9191
### Performance
9292
>[!div class="mx-tdCol2BreakAll"]
9393
>| Name | Spring Actuator Metric Name | Unit | Details |
9494
>|----|----|----|------------|
95-
>|System CPU Usage Percentage | system.cpu.usage | Percent | Recent CPU usage for the whole system. This 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.|
96-
>| App CPU Usage Percentage | App CPU Usage Percentage | Percent | Recent CPU usage for the Java Virtual Machine 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.|
97-
>| App Memory Assigned | jvm.memory.committed | Bytes | Represents the amount of memory that is guaranteed to be available for use by the JVM. The JVM may release memory to the system and committed could be less than init. committed will always be greater than or equal to used. |
95+
>| system.cpu.usage <br><br>System CPU Usage Percentage (deprecated) | system.cpu.usage | Percent | Recent CPU usage for the whole system. This 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.|
96+
>| AppCpuUsagePercentage<br><br>App CPU Usage Percentage (deprecated) | App CPU Usage Percentage | Percent | Recent CPU usage for the Java Virtual Machine 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.|
97+
>| AppMemoryCommitted<br><br>App Memory Assigned (deprecated)) | jvm.memory.committed | Bytes | Represents the amount of memory that is guaranteed to be available for use by the JVM. The JVM may release memory to the system and committed could be less than init. committed will always be greater than or equal to used. |
9898
>| App Memory Used | jvm.memory.used | Bytes | Represents the amount of memory currently used in bytes. |
9999
>| App Memory Max | jvm.memory.max | Bytes | Represents the maximum amount of memory that can be used for memory management. The amount of used and committed memory will always be less than or equal to max if max is defined. A memory allocation may fail if it attempts to increase the used memory such that used > committed even if used <= max would still be true (for example, when the system is low on virtual memory). |
100100
>| Max Available Old Generation Data Size | jvm.gc.max.data.size | Bytes | The peak memory usage of the old generation memory pool since the Java virtual machine was started. |

0 commit comments

Comments
 (0)