Skip to content

Commit 167a115

Browse files
authored
Merge pull request #104602 from DixitArora-MSFT/patch-44
Correcting Sampling values
2 parents ddbfaaa + 3e74077 commit 167a115

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/functions-host-json.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ The following sample *host.json* file for version 2.x+ has all possible options
6464
"isEnabled": true,
6565
"maxTelemetryItemsPerSecond" : 20,
6666
"evaluationInterval": "01:00:00",
67-
"initialSamplingPercentage": 1.0,
67+
"initialSamplingPercentage": 100.0,
6868
"samplingPercentageIncreaseTimeout" : "00:00:01",
6969
"samplingPercentageDecreaseTimeout" : "00:00:01",
7070
"minSamplingPercentage": 0.1,
71-
"maxSamplingPercentage": 0.1,
71+
"maxSamplingPercentage": 100.0,
7272
"movingAverageRatio": 1.0,
7373
"excludedTypes" : "Dependency;Event",
7474
"includedTypes" : "PageView;Trace"

0 commit comments

Comments
 (0)