Skip to content

Commit bffc5b3

Browse files
authored
Merge pull request #107798 from PramodValavala-MSFT/patch-97
(AzureCXP) move settings under right table
2 parents 6ce8532 + 0eb4f95 commit bffc5b3

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
@@ -141,8 +141,6 @@ For the complete JSON structure, see the earlier [example host.json file](#sampl
141141
| Property | Default | Description |
142142
| --------- | --------- | --------- |
143143
| samplingSettings | n/a | See [applicationInsights.samplingSettings](#applicationinsightssamplingsettings). |
144-
| samplingExcludedTypes | null | A semi-colon delimited list of types that you don't want to be sampled. Recognized types are: Dependency, Event, Exception, PageView, Request, Trace. All instances of the specified types are transmitted; the types that aren't specified are sampled. |
145-
| samplingIncludedTypes | null | A semi-colon delimited list of types that you want to be sampled; an empty list implies all types. Type listed in `samplingExcludedTypes` override types listed here. Recognized types are: Dependency, Event, Exception, PageView, Request, Trace. All instances of the specified types are transmitted; the types that aren't specified are sampled. |
146144
| enableLiveMetrics | true | Enables live metrics collection. |
147145
| enableDependencyTracking | true | Enables dependency tracking. |
148146
| enablePerformanceCountersCollection | true | Enables Kudu performance counters collection. |
@@ -163,6 +161,8 @@ For the complete JSON structure, see the earlier [example host.json file](#sampl
163161
| minSamplingPercentage | 0.1 | As sampling percentage varies, this property determines the minimum allowed sampling percentage. |
164162
| maxSamplingPercentage | 0.1 | As sampling percentage varies, this property determines the maximum allowed sampling percentage. |
165163
| movingAverageRatio | 1.0 | In the calculation of the moving average, the weight assigned to the most recent value. Use a value equal to or less than 1. Smaller values make the algorithm less reactive to sudden changes. |
164+
| excludedTypes | null | A semi-colon delimited list of types that you don't want to be sampled. Recognized types are: Dependency, Event, Exception, PageView, Request, Trace. All instances of the specified types are transmitted; the types that aren't specified are sampled. |
165+
| includedTypes | null | A semi-colon delimited list of types that you want to be sampled; an empty list implies all types. Type listed in `excludedTypes` override types listed here. Recognized types are: Dependency, Event, Exception, PageView, Request, Trace. All instances of the specified types are transmitted; the types that aren't specified are sampled. |
166166

167167
### applicationInsights.httpAutoCollectionOptions
168168

0 commit comments

Comments
 (0)