-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.json
45 lines (45 loc) · 989 Bytes
/
appsettings.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"$schema": "https://steeltoe.io/schema/latest/schema.json",
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"Steeltoe": "Debug",
"WeatherWebServer": "Information",
"MonitorRabbitMQ": "Warning"
}
},
"Rabbitmq": {
"Client": {
"Uri": "amqp://admin:[email protected]/weather"
}
},
"spring": {
"cloud": {
"stream": {
"binder": "rabbit",
"bindings": {
"input": {
"destination": "weather",
"group": "forecast",
"consumer": {
"quorum": {
"enabled": true
}
}
},
"output": {
"destination": "weather",
"group": "forecast",
"producer": {
"quorum": {
"enabled": true
}
}
}
}
}
}
}
}