Skip to content

Commit 3f20f72

Browse files
authored
Merge pull request #115568 from ggailey777/patch-3
Move sampling note to the top of the article
2 parents 0ca7e83 + f2f7532 commit 3f20f72

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-functions/functions-monitoring.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ As the required Application Insights instrumentation is built into Azure Functio
1717

1818
## Application Insights pricing and limits
1919

20-
You can try out Application Insights integration with Function Apps for free. There's a daily limit to how much data can be processed for free. You might hit this limit during testing. Azure provides portal and email notifications when you're approaching your daily limit. If you miss those alerts and hit the limit, new logs won't appear in Application Insights queries. Be aware of the limit to avoid unnecessary troubleshooting time. For more information, see [Manage pricing and data volume in Application Insights](../azure-monitor/app/pricing.md).
20+
You can try out Application Insights integration with Azure Functions for free. There's a daily limit to how much data can be processed for free. You might hit this limit during testing. Azure provides portal and email notifications when you're approaching your daily limit. If you miss those alerts and hit the limit, new logs won't appear in Application Insights queries. Be aware of the limit to avoid unnecessary troubleshooting time. For more information, see [Manage pricing and data volume in Application Insights](../azure-monitor/app/pricing.md).
21+
22+
> [!IMPORTANT]
23+
> Application Insights has a [sampling](../azure-monitor/app/sampling.md) feature that can protect you from producing too much telemetry data on completed executions at times of peak load. Sampling is enabled by default. If you appear to be missing data, you might need to adjust the sampling settings to fit your particular monitoring scenario. To learn more, see [Configure sampling](#configure-sampling).
2124
2225
The full list of Application Insights features available to your function app is detailed in [Application Insights for Azure Functions supported features](../azure-monitor/app/azure-functions-supported-features.md).
2326

@@ -268,9 +271,6 @@ Application Insights has a [sampling](../azure-monitor/app/sampling.md) feature
268271
}
269272
```
270273

271-
> [!NOTE]
272-
> [Sampling](../azure-monitor/app/sampling.md) is enabled by default. If you appear to be missing data, you might need to adjust the sampling settings to fit your particular monitoring scenario.
273-
274274
## Write logs in C# functions
275275

276276
You can write logs in your function code that appear as traces in Application Insights.

0 commit comments

Comments
 (0)