Skip to content

Commit 77de9ec

Browse files
committed
fix: metadaten overflow
1 parent ca7d22f commit 77de9ec

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

spring-boot-admin-samples/spring-boot-admin-sample-servlet/src/main/resources/application.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ spring:
3737
metadata:
3838
tags:
3939
environment: test
40+
kubectl.kubernetes.io/last-applied-configuration: '{"name":"jvm.threads.peak","description":"The peak live thread count since the Java virtual machine started or peak was reset","baseUnit":"threads","measurements":[{"statistic":"VALUE","value":64.0}],"availableTags":[]}'
4041
jmx:
4142
enabled: true
4243
main:

spring-boot-admin-server-ui/src/main/frontend/components/sba-formatted-obj.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444

4545
<style>
4646
.formatted {
47-
white-space: pre;
47+
white-space: break-spaces;
48+
word-break: break-word;
4849
}
4950
</style>

spring-boot-admin-server-ui/src/main/frontend/components/sba-key-value-table.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:class="{'bg-white': index%2===0, 'bg-gray-50': index%2!==0}"
77
>
88
<dt
9-
class="text-sm font-medium text-gray-500"
9+
class="text-sm font-medium text-gray-500 break-all"
1010
v-text="getLabel(key, value)"
1111
/>
1212
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">

0 commit comments

Comments
 (0)