Compare commits
2 Commits
main
...
feature/tr
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c17c6f2279 | ||
|
|
ff9dd90234 |
@ -21,6 +21,7 @@ dependencies {
|
|||||||
|
|
||||||
implementation("com.iqser.red.commons:storage-commons:2.45.0")
|
implementation("com.iqser.red.commons:storage-commons:2.45.0")
|
||||||
implementation("com.knecon.fforesight:tenant-commons:0.14.0")
|
implementation("com.knecon.fforesight:tenant-commons:0.14.0")
|
||||||
|
implementation("com.knecon.fforesight:tracing:0.5.0")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-actuator:3.1.3")
|
implementation("org.springframework.boot:spring-boot-starter-actuator:3.1.3")
|
||||||
implementation("com.amazonaws:aws-java-sdk-s3:1.12.536")
|
implementation("com.amazonaws:aws-java-sdk-s3:1.12.536")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-amqp:3.1.3")
|
implementation("org.springframework.boot:spring-boot-starter-amqp:3.1.3")
|
||||||
|
|||||||
@ -5,6 +5,8 @@ tenant-user-management-service.url: "http://tenant-user-management-service:8080/
|
|||||||
|
|
||||||
fforesight.tenants.remote: true
|
fforesight.tenants.remote: true
|
||||||
|
|
||||||
|
logging.pattern.level: "%5p [${spring.application.name},namespace=${management.namespace},traceID=%X{traceId:-NONE},spanID=%X{spanId:-NONE}]"
|
||||||
|
|
||||||
server:
|
server:
|
||||||
port: 8080
|
port: 8080
|
||||||
|
|
||||||
@ -32,6 +34,14 @@ management:
|
|||||||
prometheus.enabled: ${monitoring.enabled:false}
|
prometheus.enabled: ${monitoring.enabled:false}
|
||||||
health.enabled: true
|
health.enabled: true
|
||||||
endpoints.web.exposure.include: prometheus, health
|
endpoints.web.exposure.include: prometheus, health
|
||||||
|
namespace: ${NAMESPACE:default}
|
||||||
|
tracing:
|
||||||
|
enabled: ${TRACING_ENABLED:false}
|
||||||
|
sampling:
|
||||||
|
probability: ${TRACING_PROBABILITY:1.0}
|
||||||
|
otlp:
|
||||||
|
tracing:
|
||||||
|
endpoint: ${OTLP_ENDPOINT:http://otel-collector-opentelemetry-collector.otel-collector:4318/v1/traces}
|
||||||
|
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user