From 3b764196791e181919bbcb70ee6c3fcfb2c30ecd Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Sun, 10 Apr 2022 20:55:42 +0200 Subject: [PATCH] Informationen zur Kafka-Konfiguration im info-Endpoint sichtbar gemacht --- src/main/resources/application.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index ccc57b4..92da46f 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -10,8 +10,17 @@ management: exposure: include: "*" info: + env: + enabled: true java: enabled: true +info: + kafka: + bootstrap-server: ${producer.bootstrap-server} + client-id: ${producer.client-id} + topic: ${producer.topic} + acks: ${producer.acks} + throttle-ms: ${producer.throttle-ms} logging: level: root: INFO -- 2.20.1