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
@@ -290,7 +290,7 @@ For a function app to send data to Application Insights, it needs to connect to
290
290
|**[`APPLICATIONINSIGHTS_CONNECTION_STRING`](functions-app-settings.md#applicationinsights_connection_string)**| This setting is recommended and is required when your Application Insights instance runs in a sovereign cloud. The connection string supports other [new capabilities](/azure/azure-monitor/app/migrate-from-instrumentation-keys-to-connection-strings#new-capabilities). |
291
291
|**[`APPINSIGHTS_INSTRUMENTATIONKEY`](functions-app-settings.md#appinsights_instrumentationkey)**| Legacy setting, which Application Insights has deprecated in favor of the connection string setting. |
292
292
293
-
When you create your function app in the [Azure portal](./functions-get-started.md) from the command line by using [Azure Functions Core Tools](./create-first-function-cli-csharp.md) or [Visual Studio Code](./create-first-function-vs-code-csharp.md), Application Insights integration is enabled by default. The Application Insights resource has the same name as your function app, and is created either in the same region or in the nearest region.
293
+
When you create your function app in the [Azure portal](./functions-get-started.md) from the command line by using [Azure Functions Core Tools](./how-to-create-function-azure-cli.md?pivots=programming-language-csharp) or [Visual Studio Code](./create-first-function-vs-code-csharp.md), Application Insights integration is enabled by default. The Application Insights resource has the same name as your function app, and is created either in the same region or in the nearest region.
Copy file name to clipboardExpand all lines: articles/azure-functions/create-first-function-vs-code-csharp.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
@@ -12,7 +12,7 @@ ai-usage: ai-assisted
12
12
13
13
This article creates an HTTP triggered function that runs on .NET 8 in an isolated worker process. For information about .NET versions supported for C# functions, see [Supported versions](dotnet-isolated-process-guide.md#supported-versions).
14
14
15
-
There's also a [CLI-based version](create-first-function-cli-csharp.md) of this article.
15
+
There's also a [CLI-based version](how-to-create-function-azure-cli.md?pivots=programming-language-csharp) of this article.
16
16
17
17
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
Copy file name to clipboardExpand all lines: articles/azure-functions/flex-consumption-how-to.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,29 +33,29 @@ Function app resources are langauge-specific. Make sure to choose your preferred
33
33
+ While not required to create a Flex Consumption plan app, you need a code project to be able to deploy to and validate a new function app. Complete the first part of one of these quickstart articles, where you create a code project with an HTTP triggered function:
34
34
35
35
::: zone pivot="programming-language-csharp"
36
-
+[Create an Azure Functions project from the command line](create-first-function-cli-csharp.md)
36
+
+[Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-csharp)
37
37
+[Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-csharp.md)
38
38
::: zone-end
39
39
::: zone pivot="programming-language-javascript"
40
-
+[Create an Azure Functions project from the command line](create-first-function-cli-node.md)
40
+
+[Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-javascript)
41
41
+[Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-node.md)
42
42
::: zone-end
43
43
::: zone pivot="programming-language-java"
44
-
+[Create an Azure Functions project from the command line](create-first-function-cli-java.md)
44
+
+[Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-java)
45
45
+[Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-java.md)
46
46
47
47
To create an app in a new Flex Consumption plan during a Maven deployment, you must create your local app project and then update the project's pom.xml file. For more information, see [Create a Java Flex Consumption app using Maven](#create-and-deploy-your-app-using-maven)
48
48
::: zone-end
49
49
::: zone pivot="programming-language-typescript"
50
-
+[Create an Azure Functions project from the command line](create-first-function-cli-typescript.md)
50
+
+[Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-typescript)
51
51
+[Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-typescript.md)
52
52
::: zone-end
53
53
::: zone pivot="programming-language-python"
54
-
+[Create an Azure Functions project from the command line](create-first-function-cli-python.md)
54
+
+[Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-python)
55
55
+[Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-python.md)
56
56
::: zone-end
57
57
::: zone pivot="programming-language-powershell"
58
-
+[Create an Azure Functions project from the command line](create-first-function-cli-powershell.md)
58
+
+[Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-powershell)
59
59
+[Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-powershell.md)
60
60
::: zone-end
61
61
@@ -296,7 +296,7 @@ You can use Maven to create a Flex Consumption hosted function app and required
296
296
297
297
1. Create a Java code project by completing the first part of one of these quickstart articles:
298
298
299
-
+ [Create an Azure Functions project from the command line](create-first-function-cli-java.md)
299
+
+ [Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-java)
300
300
+ [Create an Azure Functions project using Visual Studio Code](create-first-function-vs-code-java.md)
301
301
302
302
1. In your Java code project, open the pom.xml file and make these changes to create your function app in the Flex Consumption plan:
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-add-output-binding-storage-queue-cli.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,22 +16,22 @@ In this article, you integrate an Azure Storage queue with the function and stor
16
16
## Configure your local environment
17
17
18
18
::: zone pivot="programming-language-csharp"
19
-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-csharp.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
19
+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-csharp). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
20
20
::: zone-end
21
21
::: zone pivot="programming-language-javascript"
22
-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-node.md?pivot=nodejs-model-v3). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
22
+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-javascript). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
23
23
::: zone-end
24
24
::: zone pivot="programming-language-java"
25
-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-java.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
25
+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-java). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
26
26
::: zone-end
27
27
::: zone pivot="programming-language-typescript"
28
-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-typescript.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
28
+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-typescript). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
29
29
::: zone-end
30
30
::: zone pivot="programming-language-python"
31
-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-python.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
31
+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-python). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
32
32
::: zone-end
33
33
::: zone pivot="programming-language-powershell"
34
-
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](create-first-function-cli-powershell.md). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
34
+
Before you begin, you must complete the article, [Quickstart: Create an Azure Functions project from the command line](how-to-create-function-azure-cli.md?pivots=programming-language-powershell). If you already cleaned up resources at the end of that article, go through the steps again to recreate the function app and related resources in Azure.
35
35
::: zone-end
36
36
37
37
### Retrieve the Azure Storage connection string
@@ -165,34 +165,34 @@ You've updated your HTTP triggered function to write data to a Storage queue. No
0 commit comments