-
Notifications
You must be signed in to change notification settings - Fork 12
/
appsettings.json
45 lines (45 loc) · 1.58 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
{
"AzureBlobStorage": {
"ConnectionString": "DefaultEndpointsProtocol=https;AccountName=lscapplication;AccountKey=zaFJUVrJzPJoZ3kPjbv8qKb/Kv6pe3iaVYjVvWWhPcBDeCSwr5X+MzWsEgb3JzAnb4EvQ/xJyOMn+AStGGkTow==;EndpointSuffix=core.windows.net",
"ContainerName": "app-logs"
},
"AllowedHosts": "*",
"Logging": {
"LogLevel": {
"Default": "Information"
},
"ApplicationInsights": {
"LogLevel": {
"Default": "Information"
}
}
},
"ApplicationInsights": {
"ConnectionString": "InstrumentationKey=8fee8086-aa90-4db2-8423-78c0e2b53fb4;IngestionEndpoint=https://eastus-8.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/"
},
"Serilog": {
"Using": [
"Serilog.Sinks.ApplicationInsights"
],
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Information",
"System": "Information"
}
},
"WriteTo": [
{
"Name": "ApplicationInsights",
"Args": {
"connectionString": "InstrumentationKey=8fee8086-aa90-4db2-8423-78c0e2b53fb4;IngestionEndpoint=https://eastus-8.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/",
"telemetryConverter": "Serilog.Sinks.ApplicationInsights.TelemetryConverters.TraceTelemetryConverter, Serilog.Sinks.ApplicationInsights"
}
}
],
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId", "WithThreadName", "WithEventType" ],
"Properties": {
"Application": "TaskManager WEB API"
}
}
}