-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappsettings.json
43 lines (42 loc) · 1.12 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
{
"Rollbar": {
"RollbarLoggerConfig": {
"RollbarDestinationOptions": {
"AccessToken": "post_server_access_token_here",
"Environment": "production"
},
"RollbarDeveloperOptions": {
"Enabled": true,
"LogLevel": "Info"
},
"RollbarPayloadAdditionOptions": {
"Server": {
"Root": "C://Blah/Blah",
"Cpu": "x64"
},
"Person": {
"UserName": "jbond",
"id": "007"
}
},
"RollbarDataSecurityOptions": {
"ScrubFields": [
"ThePassword",
"TheSecret"
],
"PersonDataCollectionPolicies": "Username, Email",
"IpAddressCollectionPolicy": "CollectAnonymized"
}
},
"RollbarInfrastructureOptions": {
"MaxReportsPerMinute": 160,
"ReportingQueueDepth": 120
},
"RollbarTelemetryOptions": {
"TelemetryEnabled": true,
"TelemetryQueueDepth": 100,
"TelemetryAutoCollectionTypes": "Network, Log, Error",
"TelemetryAutoCollectionInterval": "00:00:00.3000000"
}
}
}