Skip to content

Commit f5d12cb

Browse files
Reversion of Azure Functions in articles not in that silo
1 parent 275cac5 commit f5d12cb

17 files changed

Lines changed: 30 additions & 30 deletions

support/azure/app-service/capture-memory-dumps-app-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ You can see the portal configuration in the ["Proactive CPU monitoring"](#proact
254254

255255
:::image type="content" source="./media/capture-memory-dumps-app-service/proactive-cpu-monitoring-expanded.png" alt-text="Azure portal screenshot of extended proactive CPU monitoring in Diagnostic Tools." lightbox="./media/capture-memory-dumps-app-service/proactive-cpu-monitoring-expanded.png":::
256256

257-
After you study the different approaches for capturing memory dumps, the next step is to practice making captures. You can use code examples on GitHub in conjunction with [IIS debugging labs](https://github.com/benperk/CSharpGuitarBugs) and [Azure Functions](https://github.com/benperk/CsharpGuitarBugs-Function) (now known as Azure Function App) to simulate each of the scenarios that are listed in the two tables. After you deploy the code to the Azure App Service platform, you can use these tools to capture the memory dump under each given scenario. Over time and after practice, you can perfect your approach for capturing memory dumps by using the Azure App Service debugging features. The following list contains a few suggestions to consider as you continue to learn about memory dump collection:
257+
After you study the different approaches for capturing memory dumps, the next step is to practice making captures. You can use code examples on GitHub in conjunction with [IIS debugging labs](https://github.com/benperk/CSharpGuitarBugs) and [Azure Functions](https://github.com/benperk/CsharpGuitarBugs-Function) to simulate each of the scenarios that are listed in the two tables. After you deploy the code to the Azure App Service platform, you can use these tools to capture the memory dump under each given scenario. Over time and after practice, you can perfect your approach for capturing memory dumps by using the Azure App Service debugging features. The following list contains a few suggestions to consider as you continue to learn about memory dump collection:
258258

259259
- Capturing a memory dump consumes significant system resources and disrupts performance even further.
260260

support/azure/app-service/troubleshoot-intermittent-outbound-connection-errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ HTTP connection pooling
114114

115115
### Reuse connections
116116

117-
For more pointers and examples on managing connections in Azure Function App, see [Manage connections in Azure Function App](/azure/azure-functions/manage-connections).
117+
For more pointers and examples on managing connections in Azure Functions, see [Manage connections in Azure Functions](/azure/azure-functions/manage-connections).
118118

119119
### Use less aggressive retry logic
120120

support/azure/azure-functions/availability/functions-troubleshoot-issues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Resolve Function App Down or Reporting Errors
3-
description: Describes how to troubleshoot an Azure Function App app if it's not responding or reports errors.
3+
description: Describes how to troubleshoot Azure Function App if it's not responding or reports errors.
44
ms.date: 08/05/2025
55
ms.reviewer: v-liuamson; v-gsitser, v-ryanberg
66
ms.custom: sap:Function app down or reporting errors
@@ -10,7 +10,7 @@ ms.custom: sap:Function app down or reporting errors
1010

1111
## Common scenarios, error messages, and symptoms
1212

13-
Microsoft Azure Function App app failures typically fit into three major categories: configuration issues, customer code issues, and platform issues. This article explores these issues in detail and introduces the appropriate diagnostic tools for troubleshooting.
13+
Microsoft Azure Function App failures typically fit into three major categories: configuration issues, customer code issues, and platform issues. This article explores these issues in detail and introduces the appropriate diagnostic tools for troubleshooting.
1414

1515
### Configuration issues
1616

support/azure/azure-functions/config-mgmt/functions-configuring-updateversion.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Upgrade the Azure Function App app runtime version or language version
2+
title: Upgrade the Azure Function App runtime version or language version
33
description: Describes how to upgrade the Azure Function App runtime to v4 and resolve issues during the upgrade.
44
ms.date: 08/24/2023
55
ms.custom: sap:Configuring and Managing Function Apps
@@ -9,11 +9,11 @@ ms.reviewer: gasridha, v-sidong
99

1010
This article describes how to resolve some of the common issues that may occur during the update of the function app language or runtime version, like runtime being unreachable and modules not being found.
1111

12-
## Actions to take if you receive an email "Action recommended: Update your Azure Function App apps to use .NET 6."
12+
## Actions to take if you receive an email "Action recommended: Update your Azure Function App to use .NET 6."
1313

1414
- Extended support for Microsoft .NET Core 3.1 ended on December 3, 2022. Azure Function App runtime v3 is based on .NET core 3.1. We recommend that you [update your function app](/azure/azure-functions/set-runtime-version#view-and-update-the-current-runtime-version) to runtime version 4.x, which uses .NET 6 and has long-term support. After December 3, 2022, your apps aren't eligible for new features, security patches, performance optimizations, or support until you upgrade them to Functions runtime version 4.x.
1515

16-
- Your Functions apps on runtime v3 will continue to run, and your applications aren't impacted. You can deploy code to these Functions applications after this date. But we may remove the ability for you to create applications targeting the Functions runtime v3 using common paths.
16+
- Your Azure Function App on runtime v3 will continue to run, and your applications aren't impacted. You can deploy code to these Functions applications after this date. But we may remove the ability for you to create applications targeting the Functions runtime v3 using common paths.
1717

1818
- For more information and migration guidance, see:
1919

@@ -57,7 +57,7 @@ See the [list of supported languages by the runtime version](/azure/azure-functi
5757

5858
Support for proxies is available again in version 4.x so that you can successfully upgrade your function apps to the latest runtime version. However, we recommend that you switch to integrating your function apps with Azure API Management as soon as possible. API Management lets you take advantage of a more complete set of features to define, secure, manage, and monetize your Functions-based APIs. For more information, see [How to migrate to APIM](/azure/azure-functions/functions-proxies#migration) and [Integrate Functions with APIM using Visual Studio](/azure/azure-functions/openapi-apim-integrate-visual-studio).
5959

60-
## Get a list of all the Azure Function App apps that use runtime version 1.x, 2.x, or 3.x
60+
## Get a list of any instances of Azure Function App that use runtime version 1.x, 2.x, or 3.x
6161

6262
1. Navigate to your function app in the [Azure portal](https://portal.azure.com).
6363
1. Select **Diagnose and solve problems** to open [Azure Function App diagnostics](/azure/azure-functions/functions-diagnostics).

support/azure/azure-functions/creation-deletion/functions-create-or-delete-faq.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
title: Create, delete, or restore Azure function app resources
2+
title: Create, delete, or restore Azure Function App resources
33
description: Describes some common issues and solutions for creating, deleting, or restoring Azure function apps.
44
ms.date: 08/24/2023
55
ms.reviewer: gasridha, v-sidong
66
ms.custom: sap:Creating or Deleting Function Apps
77
---
8-
# Resolve issues when creating, deleting, or restoring Azure function apps
8+
# Resolve issues when creating, deleting, or restoring Azure Function App
99

10-
This article lists some common issues that may occur when you create, delete, or restore Azure function apps, and steps to resolve the issues.
10+
This article lists some common issues that may occur when you create, delete, or restore Azure Function App and steps to resolve the issues.
1111

1212
## Create function apps
1313

14-
Azure function apps use the Azure App Service infrastructure. You can create an Azure function app by using:
14+
Azure Function App uses the Azure App Service infrastructure. You can create an Azure function app by using:
1515

1616
- [Azure portal](/azure/azure-functions/functions-create-function-app-portal)
1717
- [Azure CLI](/azure/azure-functions/functions-create-first-azure-function-azure-cli#create-a-function-app)
@@ -93,7 +93,7 @@ For more information, see:
9393

9494
After you publish code from Visual Studio and use `WEBSITE_RUN_FROM_PACKAGE`, the Azure portal sets functions as *read-only* to prevent editing precompiled assets in the portal. To delete functions in a function app, remove the unwanted functions from your code, enable the **Remove additional files at destination** option in profile settings, and redeploy your code.
9595

96-
Restoring Azure function apps hosted on a [Consumption plan](/azure/azure-functions/consumption-plan) or [Elastic Premium plan](/azure/azure-functions/functions-premium-plan) isn't supported. If you have the function app content or can access the storage account, update the app settings or create a new function app, and use the content. You can restore Azure function apps on a Dedicated App service plan if it isn't using Azure Files for content storage.
96+
Restoring Azure Function App hosted on a [Consumption plan](/azure/azure-functions/consumption-plan) or [Elastic Premium plan](/azure/azure-functions/functions-premium-plan) isn't supported. If you have the function app content or can access the storage account, update the app settings or create a new function app, and use the content. You can restore Azure Function App on a Dedicated App service plan if it isn't using Azure Files for content storage.
9797

9898
For more information, see [Restore (undelete) deleted web apps](https://techcommunity.microsoft.com/t5/apps-on-azure-blog/restore-undelete-deleted-web-apps/ba-p/2922088).
9999

support/azure/azure-functions/deployment/functions-deploying-runtime-issues-post-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Runtime failure can occur for any of the following reasons:
1818

1919
- The function runtime can't start because the function app has lost access to the storage account.
2020
- In the runtime sandbox environment of Azure Function App, something is blocking certain operations that work on your local computer.
21-
- Your Azure Function App app isn't configured correctly. For example, the function host doesn't start up because of incorrect values in the following settings:
21+
- Your Azure Function App isn't configured correctly. For example, the function host doesn't start up because of incorrect values in the following settings:
2222
- Runtime or language version
2323
- Triggers connection strings
2424
- Key vault settings

support/azure/azure-functions/monitoring/functions-monitoring-appinsightslogs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ ms.reviewer: gasridha, v-jayaramanp, agaltrai, jarrettr
66
ms.custom: sap:Monitoring using Application Insights, Metrics and Alerts
77
---
88

9-
# Application Insights logs are missing or incorrect for Azure Function App apps
9+
# Application Insights logs are missing or incorrect for Azure Function App
1010

11-
You can closely monitor the function app through the integration between [Azure Function App](https://azure.microsoft.com/products/functions) and [Application Insights](/azure/azure-monitor/app/app-insights-overview). And you can use Application Insights without any custom configuration.
11+
You can closely monitor the function app through the integration between [Azure Functions](https://azure.microsoft.com/products/functions) and [Application Insights](/azure/azure-monitor/app/app-insights-overview). And you can use Application Insights without any custom configuration.
1212

1313
If the Application Insights logs are missing, or if the data appears to be partial or inaccurate, use the following steps to resolve the issue.
1414

support/azure/azure-monitor/app-insights/telemetry/auto-instrumentation-troubleshoot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ If your extension deployed successfully but you're unable to see telemetry, it c
6464
- Conflicting dynamic link libraries (DLLs) in an app's bin directory.
6565
- Conflict with IIS shared configuration.
6666

67-
## Issues with Java app running on Azure Function App
67+
## Issues with Java app running on Azure Functions
6868

6969
### Slow startup times
7070

support/azure/azure-monitor/app-insights/telemetry/opentelemetry-troubleshooting-python.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@ Duplicate telemetry is often caused if you create multiple instances of processo
4545

4646
The following sections describe scenarios that can cause duplicate telemetry.
4747

48-
#### Duplicate trace logs in Azure Function App
48+
#### Duplicate trace logs in Azure Functions
4949

5050
If you see a pair of entries for each trace log within Application Insights, you probably enabled the following types of logging instrumentation:
5151

52-
- The native logging instrumentation in Azure Function App
52+
- The native logging instrumentation in Azure Functions
5353
- The `azure-monitor-opentelemetry` logging instrumentation within the distribution
5454

55-
To prevent duplication, you can disable the distribution's logging, but leave the native logging instrumentation in Azure Function App enabled. To do this, set the `OTEL_LOGS_EXPORTER` environment variable to `None`.
55+
To prevent duplication, you can disable the distribution's logging, but leave the native logging instrumentation in Azure Functions enabled. To do this, set the `OTEL_LOGS_EXPORTER` environment variable to `None`.
5656

57-
#### Duplicate telemetry in "Always On" Azure Function App
57+
#### Duplicate telemetry in "Always On" Azure Functions
5858

59-
If the **Always On** setting in Azure Function App is set to **On**, Azure Function App keeps some processes running in the background after each run is complete. For instance, suppose that you have a five-minute timer function that calls `configure_azure_monitor` each time. After 20 minutes, you then might have four metric exporters that are running at the same time. This situation might be the source of your duplicate metrics telemetry.
59+
If the **Always On** setting in Azure Functions is set to **On**, Azure Functions keeps some processes running in the background after each run is complete. For instance, suppose that you have a five-minute timer function that calls `configure_azure_monitor` each time. After 20 minutes, you then might have four metric exporters that are running at the same time. This situation might be the source of your duplicate metrics telemetry.
6060

6161
In this situation, either set the **Always On** setting to **Off**, or try manually shutting down the providers between each `configure_azure_monitor` call. To shut down each provider, run shutdown calls for each current meter, tracer, and logger provider, as shown in the following code:
6262

support/azure/azure-monitor/app-insights/telemetry/troubleshoot-high-data-ingestion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ To determine the factors contributing to the costs, follow these steps:
237237
| sort by count_ desc
238238
```
239239
240-
The following exmaple shows Azure Function App is generating lots of trace and exception telemetry:
240+
The following exmaple shows Azure Functions is generating lots of trace and exception telemetry:
241241
242242
:::image type="content" source="media/troubleshoot-high-data-ingestion/table-sdkversion-count.png" alt-text="Screenshot that shows which table and SDK is generating the most Trace and Exception telemetry.":::
243243

0 commit comments

Comments
 (0)