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/create-first-function-cli-python.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -304,7 +304,7 @@ In the previous example, replace `<FUNCTION_APP_NAME>` and `<RESOURCE_GROUP_NAME
304
304
305
305
## Verify in Azure
306
306
307
-
Run the following command to view near real-time [streaming logs](functions-run-local.md#enable-streaming-logs) in Application Insights in the Azure portal.
307
+
Run the following command to view near real-time streaming logs in Application Insights in the Azure portal.
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-app-settings.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -507,7 +507,7 @@ Controls the timeout, in seconds, when connected to streaming logs. The default
507
507
|-|-|
508
508
|SCM_LOGSTREAM_TIMEOUT|`1800`|
509
509
510
-
The above sample value of `1800` sets a timeout of 30 minutes. To learn more, see [Enable streaming logs](functions-run-local.md#enable-streaming-logs).
510
+
The above sample value of `1800` sets a timeout of 30 minutes. For more information, see [Enable streaming execution logs in Azure Functions](streaming-logs.md).
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-run-local.md
+8-6
Original file line number
Diff line number
Diff line change
@@ -246,18 +246,18 @@ Keep in mind the following considerations when running your functions locally:
246
246
247
247
+ While there's local storage emulation available, it's often best to validate your triggers and bindings against live services in Azure. You can maintain the connections to these services in the local.settings.json project file. For more information, see [Local settings file](functions-develop-local.md#local-settings-file). Make sure to keep test and production data separate when testing against live Azure services.
248
248
249
-
+ You can trigger non-HTTP functions locally without connecting to a live service. For more information, see [Non-HTTP triggered functions](#non-http-triggered-functions).
249
+
+ You can trigger non-HTTP functions locally without connecting to a live service. For more information, see [Pass data to local functions](./functions-run-local?tabs=non-http-trigger#pass-data-to-local-functions).
250
250
251
251
+ When you include your Application Insights connection information in the local.settings.json file, local log data is written to the specific Application Insights instance. To keep local telemetry data separate from production data, consider using a separate Application Insights instance for development and testing.
252
252
253
253
## Pass data to local functions
254
254
255
-
To test your functions locally, you [start the Functions host](#start) and call endpoints on the local server using HTTP requests. The endpoint you call depends on the type of function.
255
+
To test your functions locally, you [start the Functions host](#start) and call endpoints on the local server using HTTP requests. The endpoint you call depends on your type of function trigger.
256
256
257
-
>[!NOTE]
257
+
>[!NOTE]
258
258
> Examples in this topic use the cURL tool to send HTTP requests from the terminal or a command prompt. You can use a tool of your choice to send HTTP requests to the local server. The cURL tool is available by default on Linux-based systems and Windows 10 build 17063 and later. On older Windows, you must first download and install the [cURL tool](https://curl.haxx.se/).
259
259
260
-
### [HTTP triggers](#tab/http-trigger)
260
+
### [HTTP trigger](#tab/http-trigger)
261
261
262
262
You call this endpoint to start an HTTP triggered function:
263
263
@@ -327,10 +327,12 @@ The following considerations apply when using the administrator endpoint for loc
327
327
328
328
+ Access keys are valuable shared secrets. When used locally, they must be securely stored outside of source control. Because authentication and authorization aren't required by Functions when running locally, you should avoid using and storing access keys unless your scenarios require it.
329
329
330
-
+ Event Grid triggers have other requirements for local testing. For more information, see [Local testing with viewer web app](event-grid-how-tos.md#local-testing-with-viewer-web-app).
331
-
332
330
+ Calling an administrator endpoint and passing test data is similar to using the **Test** tab in the Azure portal.
333
331
332
+
### [Event Grid trigger](#tab/non-http-trigger)
333
+
334
+
Event Grid triggers have spcific requirements to enable local testing. For more information, see [Local testing with viewer web app](event-grid-how-tos.md#local-testing-with-viewer-web-app).
0 commit comments