aboutsummaryrefslogtreecommitdiffstats
path: root/app/src
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-09-06 09:03:36 +0200
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2023-09-06 13:06:43 +0200
commit2caf8fbef7a20cc4e98975b40d21efc073195b77 (patch)
treeb41ea717c9f14e811b7314eec33ff3b9d2f0ea89 /app/src
parent2e55f45bc0b1b18c86dc4491ad4ababd6d0468d7 (diff)
Add Micrometer [preferences]montreal
- add Micrometer dependencies - add build.gradle on project root since the Jenkins gradle plugin would otherwise fail Issue-ID: PORTALNG-58 Change-Id: Id3f986a8b98647139b52b397608e95eb94d30d6b Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'app/src')
-rw-r--r--app/src/main/resources/application.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/src/main/resources/application.yml b/app/src/main/resources/application.yml
index d7c6325..ffe174e 100644
--- a/app/src/main/resources/application.yml
+++ b/app/src/main/resources/application.yml
@@ -3,6 +3,8 @@ server:
address: 0.0.0.0
spring:
+ application:
+ name: preferences
jackson:
serialization:
# needed for serializing objects of type object
@@ -36,3 +38,10 @@ management:
enabled: true
java:
enabled: true
+ tracing:
+ enabled: true
+ sampling:
+ probability: 1.0 # sample every request
+ zipkin:
+ tracing:
+ endpoint: http://${COLLECTOR_HOST}:${COLLECTOR_PORT}/api/v2/spans \ No newline at end of file