-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathappsettings.json
More file actions
79 lines (65 loc) · 1.43 KB
/
appsettings.json
File metadata and controls
79 lines (65 loc) · 1.43 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"DefaultPolicy": {
"CircuitBreakerPolicy": {
"DurationOfBreak": "00:00:30",
"ExceptionsAllowedBeforeBreaking": 5
},
"AdvancedCircuitBreaker": {
"FailureThreshold": "0.5",
"SamplingDuration": "00:00:05",
"MinimumThroughput": 20,
"DurationOfBreak": "00:00:30"
},
"RetryPolicy": {
"BackOffPower": 2,
"Count": "3"
},
"JitterRetryPolicy": {
"MaxDelay": 100,
"MaxRetries": 5
},
"TimeoutPolicy": {
"Timeout": "00:00:01"
},
"FallbackPolicy": {
"Description": "Operation was Unsuccessful"
}
},
"CircuitBreakerPolicy": {
"DurationOfBreak": "00:00:30",
"ExceptionsAllowedBeforeBreaking": 4
},
"AdvancedCircuitBreaker": {
"FailureThreshold": "0.5",
"SamplingDuration": "00:00:05",
"MinimumThroughput": 20,
"DurationOfBreak": "00:00:30"
},
"RetryPolicy": {
"BackOffPower": 2,
"Count": "3"
},
"JitterRetryPolicy": {
// 200 seconds
"MaxDelay": "00:00:03:20",
"MaxRetries": 5,
"SeedDelay": "00:00:00:100"
},
"TimeoutPolicy": {
"Timeout": "00:03:00"
},
"BulkheadPolicy": {
"MaxParallelization": 115,
"MaxQueuedItems": 100
},
"FallbackPolicy": {
"Description": "Operation was Unsuccessful"
}
}