aboutsummaryrefslogtreecommitdiffstats
path: root/runtime-acm/src/test/resources/application-tracing.yaml
blob: d24fe9c5391069df41d22120d4f1dd85c6833645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
spring:
  datasource:
    url: jdbc:h2:mem:testdb
    driverClassName: org.h2.Driver
    hikari:
      maxLifetime: 1800000
      maximumPoolSize: 3
  jpa:
    hibernate:
      ddl-auto: create-drop
    open-in-view: false

management:
  tracing:
    propagation:
      produce: b3
    sampling:
      probability: 1.0

tracing:
  enabled: true
  exporter:
    endpoint: http://jaeger:4317
    protocol: grpc
  sampler:
    jaeger-remote:
      endpoint: http://jaeger:14250