-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.example.json
More file actions
78 lines (75 loc) · 1.93 KB
/
appsettings.example.json
File metadata and controls
78 lines (75 loc) · 1.93 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
{
"Configuration": {
"Name": "LogicMonitor Datamart for ACME",
"DataSources": [
{
"Name": "Ping",
"InstanceInclusionExpression": "true",
"DataPoints": [
{
"Name": "average",
"Description": "Average Round Trip Time",
"GraphName": null,
"MeasurementUnit": "ms",
"PercentageAvailabilityCalculation": "",
"GlobalAlertExpression": "",
"Calculation": "",
"Tags": "",
"Property1": "",
"Property2": "",
"Property3": "",
"InstanceDatapointProperty1": "",
"InstanceDatapointProperty2": "",
"InstanceDatapointProperty3": "",
"ResyncTimeSeriesData": false
}
]
}
],
"AggregationReset": null,
"StartDateTimeUtc": null,
"LogicMonitorClientOptions": {
"Account": "acme",
"AccessId": "xxxxxxxxxxxxxxxxxxxx",
"AccessKey": "yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy"
},
"DatabaseType": "SqlServer",
"DatabaseServerName": "host.docker.internal",
"DatabaseServerPort": 1433,
"DatabaseRetryOnFailureCount": 0,
"SqlServerAuthenticationMethod": "SqlPassword",
"DatabaseName": "LogicMonitor_acme",
"DatabaseUsername": "username",
"DatabasePassword": "password",
"SqlCommandTimeoutSeconds": 600,
"SqlBulkCopyTimeoutSeconds": 600,
"EnableSensitiveDatabaseLogging": false,
"DeviceDataSourceInstanceBatchSize": 100,
"DeviceProperties": [
"system.categories",
"system.sysinfo"
],
"DimensionSyncHaltOnError": true,
"MinutesOffset": 0,
"FakeExecutionTime": null
},
"Serilog": {
"MinimumLevel": {
"Default": "Information"
},
"Enrich": [
"FromLogContext"
],
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level}] {SourceContext} {Message}{NewLine}{Exception}"
}
}
],
"Properties": {
"Application": "LogicMonitor.Datamart.Cli"
}
}
}