Skip to content

Commit 3e74077

Browse files
Correcting Sampling values
(AzureCXP) fixes MicrosoftDocs/azure-docs#48125
1 parent 3751cd8 commit 3e74077

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)