-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhost.json
More file actions
41 lines (41 loc) · 1.46 KB
/
host.json
File metadata and controls
41 lines (41 loc) · 1.46 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
{
"version": "2.0",
"extensions": {
"extendedSessionsEnabled": "true",
"extendedSessionIdleTimeoutInSeconds": 120
},
"logging": {
"fileLoggingMode": "always",
"logLevel": {
"default": "Debug",
"Function": "Debug",
"Host": "Debug",
"Host.Results": "Debug",
"Host.Aggregator": "Debug",
"Host.Triggers.DurableTask": "Debug"
},
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"maxTelemetryItemsPerSecond": 1500,
"evaluationInterval": "01:00:00",
"initialSamplingPercentage": 100.0,
"samplingPercentageIncreaseTimeout": "00:00:01",
"samplingPercentageDecreaseTimeout": "00:00:01",
"minSamplingPercentage": 50.0,
"maxSamplingPercentage": 100.0,
"movingAverageRatio": 1.0,
"excludedTypes": "Dependency;Event;Exception;Request;Trace",
"includedTypes": "PageView"
},
"enableLiveMetrics": true,
"enableDependencyTracking": true,
"enablePerformanceCountersCollection": true,
"httpAutoCollectionOptions": {
"enableHttpTriggerExtendedInfoCollection": true,
"enableW3CDistributedTracing": true,
"enableResponseHeaderInjection": true
}
}
}
}