Initiale Version eines Gateways für die SumUp-Services
[demos/kafka/training] / src / main / resources / application.yml
index 4ebe5db..218aaa1 100644 (file)
@@ -1,11 +1,12 @@
-producer:
-  bootstrap-server: :9092
-  client-id: DEV
-  topic: test
-  acks: -1
-  batch-size: 16384
-  linger-ms: 0
-  compression-type: gzip
+sumup:
+  gateway:
+    bootstrap-server: :9092
+    client-id: DEV
+    topic: test
+    acks: -1
+    batch-size: 16384
+    linger-ms: 0
+    compression-type: gzip
 management:
   endpoint:
     shutdown:
@@ -25,10 +26,12 @@ info:
     client-id: ${producer.client-id}
     topic: ${producer.topic}
     acks: ${producer.acks}
-    throttle-ms: ${producer.throttle-ms}
+    batch-size: ${producer.batch-size}
+    linger-ms: ${producer.linger-ms}
+    compression-type: ${producer.compression-type}
 logging:
   level:
     root: INFO
-    de.juplo: DEBUG
+    de.juplo: TRACE
 server:
   port: 8880