Skip to content

Commit 03ad5fe

Browse files
committed
Fix finbar PR
1 parent 156985f commit 03ad5fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/azure-functions/functions-bindings-http-webhook-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ In non-C# functions, requests sent with the content-type `image/jpeg` results in
11631163

11641164
### Limits
11651165

1166-
The HTTP request length is limited to 210 MB (220,200,960 bytes), and the URL length is limited to 4 KB (4,096 bytes). These limits are specified by the `httpRuntime` element of the runtime's [Web.config file](https://github.com/Azure/azure-functions-host/blob/v3.x/src/WebJobs.Script.WebHost/web.config).
1166+
The HTTP request size and URL lengths are both limited based on [settings defined in the host](https://github.com/Azure/azure-functions-host/blob/dev/src/WebJobs.Script.WebHost/web.config#L19). For more information, see [Service limits](functions-scale.md#service-limits).
11671167

11681168
If a function that uses the HTTP trigger doesn't complete within 230 seconds, the [Azure Load Balancer](../app-service/faq-availability-performance-application-issues.yml#why-does-my-request-time-out-after-230-seconds-) will time out and return an HTTP 502 error. The function will continue running but will be unable to return an HTTP response. For long-running functions, we recommend that you follow async patterns and return a location where you can ping the status of the request. For information about how long a function can run, see [Scale and hosting - Consumption plan](functions-scale.md#timeout).
11691169

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ For the complete JSON structure, see the earlier [example host.json file](#sampl
157157
| --------- | --------- | --------- |
158158
| samplingSettings | n/a | See [applicationInsights.samplingSettings](#applicationinsightssamplingsettings). |
159159
| dependencyTrackingOptions | n/a | See [applicationInsights.dependencyTrackingOptions](#applicationinsightsdependencytrackingoptions). |
160-
| enableLiveMetrics | true | Enables live metrics collection. You can filter live metrics using [applicationInsights.samplingSettings.excludedTypes](#applicationinsightssamplingsettings), For more information, see see [Select and filter your metrics](../azure-monitor/app/live-stream.md#select-and-filter-your-metrics). |
160+
| enableLiveMetrics | true | Enables live metrics collection. You can filter live metrics using [applicationInsights.samplingSettings.excludedTypes](#applicationinsightssamplingsettings), For more information, see see [Select and filter your metrics](/azure/azure-monitor/app/live-stream#select-and-filter-your-metrics). |
161161
| enableDependencyTracking | true | Enables dependency tracking. |
162162
| enablePerformanceCountersCollection | true | Enables Kudu performance counters collection. |
163163
| liveMetricsInitializationDelay | 00:00:15 | For internal use only. |

0 commit comments

Comments
 (0)