-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Production.json
More file actions
56 lines (56 loc) · 1.38 KB
/
appsettings.Production.json
File metadata and controls
56 lines (56 loc) · 1.38 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
{
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"ThingConnect.Pulse.Services.ProbeService": "Warning",
"Microsoft": "Warning",
"System": "Warning"
}
},
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "C:\\ProgramData\\ThingConnect.Pulse\\logs\\pulse-.log",
"rollingInterval": "Day",
"retainedFileCountLimit": 60,
"fileSizeLimitBytes": 52428800,
"rollOnFileSizeLimit": true,
"bufferSize": 32768,
"flushToDiskInterval": "00:00:05",
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] [{SourceContext}] {Message:lj}{NewLine}{Exception}",
"shared": true
}
}
],
"Properties": {
"Environment": "Production"
}
},
"Logging": {
"Retention": {
"DaysToKeep": 60,
"MaxTotalSizeMB": 1000,
"CleanupSchedule": "02:00:00"
}
},
"Data": {
"Retention": {
"RawDays": 60,
"Rollup15mDays": 365,
"RollupDailyDays": -1,
"OutageDays": -1,
"ConfigHistoryDays": -1
},
"Pruning": {
"Enabled": true,
"IntervalHours": 168,
"BatchSize": 1000,
"MaxExecutionMinutes": 30
}
},
"ConnectionStrings": {
"DefaultConnection": "Data Source=C:\\ProgramData\\ThingConnect.Pulse\\data\\pulse.db"
}
}