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/monitor-functions-reference.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
@@ -38,7 +38,7 @@ Aside from Azure Functions specific metrics, the App Service platform implements
38
38
39
39
For more information on what metric dimensions are, see [Multi-dimensional metrics](../azure-monitor/essentials/data-platform-metrics.md#multi-dimensional-metrics).
40
40
41
-
Azure Functions does not have any metrics that contain dimensions.
41
+
Azure Functions doesn't have any metrics that contain dimensions.
Copy file name to clipboardExpand all lines: articles/azure-functions/monitor-functions.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@ title: Monitoring Azure Functions
3
3
description: Start here to learn how to monitor Azure Functions
4
4
author: vraposo
5
5
ms.topic: how-to
6
-
ms.author: glenga
7
6
ms.service: azure-functions
8
7
ms.custom: subject-monitoring
9
8
ms.date: 07/05/2022
@@ -13,7 +12,7 @@ ms.date: 07/05/2022
13
12
14
13
When you have critical applications and business processes relying on Azure resources, you want to monitor those resources for their availability, performance, and operation.
15
14
16
-
This article describes the monitoring data generated by apps hosted in Azure Functions. Azure Functions uses [Azure Monitor](../azure-monitor/overview.md) to monitor the health of your function apps. If you are unfamiliar with the features of Azure Monitor common to all Azure services that use it, see [Monitoring Azure resources with Azure Monitor](../azure-monitor/essentials/monitor-azure-resource.md).
15
+
This article describes the monitoring data generated by apps hosted in Azure Functions. Azure Functions uses [Azure Monitor](../azure-monitor/overview.md) to monitor the health of your function apps. If you're unfamiliar with the features of Azure Monitor common to all Azure services that use it, see [Monitoring Azure resources with Azure Monitor](../azure-monitor/essentials/monitor-azure-resource.md).
17
16
18
17
Azure Functions uses Application Insights to collect and analyze log data from individual function executions in your function app. For more information, see [Monitor functions in Azure](functions-monitoring.md).
19
18
@@ -27,7 +26,7 @@ See [Monitoring Azure Functions data reference](monitor-functions-reference.md)
27
26
28
27
Platform metrics and the Activity log are collected and stored automatically, but can be routed to other locations by using a diagnostic setting.
29
28
30
-
Resource Logs are not collected and stored until you create a diagnostic setting and route them to one or more locations.
29
+
Resource Logs aren't collected and stored until you create a diagnostic setting and route them to one or more locations.
31
30
32
31
See [Create diagnostic setting to collect platform logs and metrics in Azure](../azure-monitor/essentials/diagnostic-settings.md) for the detailed process for creating a diagnostic setting using the Azure portal, CLI, or PowerShell. When you create a diagnostic setting, you specify which categories of logs to collect. The categories for *Azure Functions* are listed in [Azure Functions monitoring data reference](monitor-functions-reference.md#resource-logs).
33
32
@@ -72,15 +71,15 @@ FunctionAppLogs
72
71
| order by TimeGenerated desc
73
72
```
74
73
75
-
The following sample query can help you monitor a specific functions app logs:
74
+
The following sample query can help you monitor a specific functions app's logs:
76
75
77
76
```Kusto
78
77
FunctionAppLogs
79
78
| where FunctionName == "<Function name>"
80
79
| order by TimeGenerated desc
81
80
```
82
81
83
-
The following sample query can help you monitor exceptions on a specific functions app logs:
82
+
The following sample query can help you monitor exceptions on a specific functions app's logs:
84
83
85
84
```Kusto
86
85
FunctionAppLogs
@@ -93,7 +92,7 @@ FunctionAppLogs
93
92
94
93
Azure Monitor alerts proactively notify you when important conditions are found in your monitoring data. They allow you to identify and address issues in your system before your customers notice them. You can set alerts on [metrics](../azure-monitor/alerts/alerts-metric-overview.md), [logs](../azure-monitor/alerts/alerts-unified-log.md), and the [activity log](../azure-monitor/alerts/activity-log-alerts.md). Different types of alerts have benefits and drawbacks.
95
94
96
-
If you are creating or running an application which run on Functions [Azure Monitor Application Insights](../azure-monitor/overview.md#application-insights) may offer additional types of alerts.
95
+
If you're creating or running an application that run on Functions [Azure Monitor Application Insights](../azure-monitor/overview.md#application-insights) may offer other types of alerts.
97
96
98
97
The following table lists common and recommended alert rules for Functions.
99
98
@@ -109,7 +108,9 @@ The following table lists common and recommended alert rules for Functions.
109
108
110
109
## Next steps
111
110
112
-
- See [Monitor Azure Functions](functions-monitoring.md) for details on how-to monitor a Function App.
113
-
- See [Monitoring Azure Functions data reference](monitor-functions-reference.md) for a reference of the metrics, logs, and other important values created by Azure Functions.
114
-
- See [Monitoring Azure resources with Azure Monitor](../azure-monitor/essentials/monitor-azure-resource.md) for details on monitoring Azure resources.
115
-
- See [Analyze Azure Functions telemetry in Application Insights](analyze-telemetry-data.md) for details on how-to view and query the data being collected from a Function App.
111
+
For more information about monitoring Azure Functions, see the following articles:
112
+
113
+
*[Monitor Azure Functions](functions-monitoring.md) - details how-to monitor a function app.
114
+
*[Monitoring Azure Functions data reference](monitor-functions-reference.md) - reference of the metrics, logs, and other important values created by your function app.
*[Analyze Azure Functions telemetry in Application Insights](analyze-telemetry-data.md) - details how-to view and query the data being collected from a function app.
0 commit comments