Skip to content

Commit e3e4139

Browse files
committed
Acrolinx
1 parent ba706f5 commit e3e4139

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

articles/azure-functions/monitor-functions-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Aside from Azure Functions specific metrics, the App Service platform implements
3838

3939
For more information on what metric dimensions are, see [Multi-dimensional metrics](../azure-monitor/essentials/data-platform-metrics.md#multi-dimensional-metrics).
4040

41-
Azure Functions does not have any metrics that contain dimensions.
41+
Azure Functions doesn't have any metrics that contain dimensions.
4242

4343
## Resource logs
4444

articles/azure-functions/monitor-functions.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: Monitoring Azure Functions
33
description: Start here to learn how to monitor Azure Functions
44
author: vraposo
55
ms.topic: how-to
6-
ms.author: glenga
76
ms.service: azure-functions
87
ms.custom: subject-monitoring
98
ms.date: 07/05/2022
@@ -13,7 +12,7 @@ ms.date: 07/05/2022
1312

1413
When you have critical applications and business processes relying on Azure resources, you want to monitor those resources for their availability, performance, and operation.
1514

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).
1716

1817
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).
1918

@@ -27,7 +26,7 @@ See [Monitoring Azure Functions data reference](monitor-functions-reference.md)
2726

2827
Platform metrics and the Activity log are collected and stored automatically, but can be routed to other locations by using a diagnostic setting.
2928

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.
3130

3231
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).
3332

@@ -72,15 +71,15 @@ FunctionAppLogs
7271
| order by TimeGenerated desc
7372
```
7473

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:
7675

7776
```Kusto
7877
FunctionAppLogs
7978
| where FunctionName == "<Function name>"
8079
| order by TimeGenerated desc
8180
```
8281

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:
8483

8584
```Kusto
8685
FunctionAppLogs
@@ -93,7 +92,7 @@ FunctionAppLogs
9392

9493
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.
9594

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.
9796

9897
The following table lists common and recommended alert rules for Functions.
9998

@@ -109,7 +108,9 @@ The following table lists common and recommended alert rules for Functions.
109108

110109
## Next steps
111110

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.
115+
* [Monitoring Azure resources with Azure Monitor](../azure-monitor/essentials/monitor-azure-resource.md) - details monitoring Azure resources.
116+
* [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

Comments
 (0)