-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathappsettings.json
46 lines (45 loc) · 1.26 KB
/
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
46
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"EventBus": {
"DefaultTransportWaitStarted": false,
"Naming": {
"Convention": "DotCase",
"UseFullTypeNames": false
},
"DefaultTransportName": "azure-service-bus",
"Transports": { // keyed by name of the transport
"azure-service-bus": {
"DefaultEntityKind": "Queue", // required if using the basic SKU (does not support topics)
"FullyQualifiedNamespace": "{your_namespace}.servicebus.windows.net"
},
"in-memory-images": {
"DefaultEventIdFormat": "DoubleLongHex"
},
"in-memory-videos": {
"DefaultEntityKind": "Queue"
}
},
"Events": {
"ConfigSample.ImageUploaded": { // FullName of the type
"TransportName": "in-memory-images"
},
"ConfigSample.VideoUploaded": { // FullName of the type
"TransportName": "in-memory-videos",
"Consumers": {
"ConfigSample.VisualsUploadedConsumer": { // FullName of the type
"UnhandledErrorBehaviour": "Discard",
"Metadata": {
"generation": "2022"
}
}
}
}
}
}
}