Skip to content

fix(deps): bump org.springframework.boot:spring-boot-dependencies from 3.2.5 to 3.3.0 #720

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/starter-web.md
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,7 @@ Spring Boot is using [micrometer](https://micrometer.io/) to instrument code usi
| `jvm_memory_used_bytes` | `id`, `area` | The amount of used memory. |
| `jvm_memory_committed_bytes` | `id`, `area` | The amount of memory in bytes that is committed for the Java virtual machine to use. |
| `jvm_memory_max_bytes` | `id`, `area` | The maximum amount of memory in bytes that can be used for memory management. |
| `jvm_memory_usage_after_gc` | | The amount of memory used by the JVM after garbage collection (GC) has occurred. |
| `jvm_gc_max_data_size_bytes` | | Max size of long-lived heap memory pool. |
| `jvm_gc_live_data_size_bytes` | | Size of long-lived heap memory pool after reclamation. |
| `jvm_gc_memory_allocated_bytes_total` | | Incremented for an increase in the size of the (young) heap memory pool after one GC to before the next. |
Expand All @@ -538,6 +539,7 @@ Spring Boot is using [micrometer](https://micrometer.io/) to instrument code usi
| `jvm_gc_pause_seconds_count` | `gc`, `action`, `cause` | Time spent in GC pause. |
| `jvm_gc_pause_seconds_sum` | `gc`, `action`, `cause` | |
| `jvm_gc_pause_seconds_max` | `gc`, `action`, `cause` | |
| `jvm_gc_overhead` | | The percentage of total CPU time that is spent in garbage collection activities. |
| `system_cpu_count` | | The number of processors available to the Java virtual machine. |
| `system_load_average_1m` | | The sum of the number of runnable entities queued to available processors and the number of runnable entities running on the available processors averaged over a period of time. |
| `system_cpu_usage` | | The "recent cpu usage" of the system the application is running in. |
Expand Down
2 changes: 1 addition & 1 deletion sda-commons-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ext {
awaitalityVersion = '4.2.0'
bouncycastleVersion = '1.78.1'
logbackContribVersion = '0.1.5'
springBootVersion = '3.2.5'
springBootVersion = '3.3.0'
springCloudVersion = '2023.0.1'
scalaVersion = '2.13.14'
swaggerCoreVersion = '2.2.22'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ void shouldProduceHttpServerMetricWithPathVariable() {

assertThat(metrics)
.contains(
"http_server_requests_seconds_count{error=\"none\",exception=\"none\",method=\"GET\",outcome=\"SUCCESS\",status=\"200\",uri=\"/add-custom-metrics/{name}\",} ")
"http_server_requests_seconds_count{error=\"none\",exception=\"none\",method=\"GET\",outcome=\"SUCCESS\",status=\"200\",uri=\"/add-custom-metrics/{name}\"} ")
.contains(
"http_server_requests_seconds_sum{error=\"none\",exception=\"none\",method=\"GET\",outcome=\"SUCCESS\",status=\"200\",uri=\"/add-custom-metrics/{name}\",} ");
"http_server_requests_seconds_sum{error=\"none\",exception=\"none\",method=\"GET\",outcome=\"SUCCESS\",status=\"200\",uri=\"/add-custom-metrics/{name}\"} ");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ private MetricsConstants() {}
public static final List<String> PROMETHEUS_METRICS_NAMES =
List.of(
"tomcat_sessions_created_sessions_total",
"jvm_memory_usage_after_gc_percent",
"jvm_memory_usage_after_gc",
"http_client_requests_seconds_count",
"http_client_requests_seconds_sum",
"http_client_requests_seconds_max",
Expand Down Expand Up @@ -51,7 +51,7 @@ private MetricsConstants() {}
"jvm_buffer_count_buffers",
"jvm_memory_used_bytes",
"executor_queue_remaining_tasks",
"jvm_gc_overhead_percent",
"jvm_gc_overhead",
"disk_free_bytes",
"tomcat_sessions_active_max_sessions",
"disk_total_bytes",
Expand Down
Loading