You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/configure-monitoring.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,7 +195,7 @@ You can exclude certain types of telemetry from sampling. In this example, data
195
195
```
196
196
---
197
197
198
-
For more information, see [Sampling in Application Insights](../azure-monitor/app/sampling.md).
198
+
If your project takes a dependency on the Application Insights SDK to do manual telemetry tracking, you may experience strange behavior if your sampling configuration differs from the sampling configuration in your function app. In such cases, use the same sampling configuration as the function app. For more information, see [Sampling in Application Insights](../azure-monitor/app/sampling.md).
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-monitoring.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,36 @@ Typically, you create an Application Insights instance when you create your func
36
36
> [!IMPORTANT]
37
37
> Sovereign clouds, such as Azure Government, require the use of the Application Insights connection string (`APPLICATIONINSIGHTS_CONNECTION_STRING`) instead of the instrumentation key. To learn more, see the [APPLICATIONINSIGHTS_CONNECTION_STRING reference](functions-app-settings.md#applicationinsights_connection_string).
38
38
39
+
The following table details the supported features of Application Insights available for monitoring your function apps:
\* To enable the collection of SQL query string text, see [Enable SQL query collection](./configure-monitoring.md#enable-sql-query-collection).
68
+
39
69
## Collecting telemetry data
40
70
41
71
With Application Insights integration enabled, telemetry data is sent to your connected Application Insights instance. This data includes logs generated by the Functions host, traces written from your functions code, and performance data.
@@ -80,6 +110,10 @@ In addition to automatic dependency data collection, you can also use one of the
80
110
+[Log custom telemetry in JavaScript functions](functions-reference-node.md#log-custom-telemetry)
81
111
+[Log custom telemetry in Python functions](functions-reference-python.md#log-custom-telemetry)
82
112
113
+
### Performance Counters
114
+
115
+
Automatic collection of Performance Counters isn't supported when running on Linux.
116
+
83
117
## Writing to logs
84
118
85
119
The way that you write to logs and the APIs you use depend on the language of your function app project.
0 commit comments