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/app-service/webjobs-sdk-how-to.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
@@ -1092,7 +1092,7 @@ In version 3.*x*, you don't have to flush [`TelemetryClient`] when the host stop
1092
1092
1093
1093
#### Version 2.*x*
1094
1094
1095
-
In version 2.*x*, the [`TelemetryClient`] instance created internally by the Application Insights provider for the WebJobs SDK uses [`ServerTelemetryChannel`](https://github.com/microsoft/ApplicationInsights-dotnet/tree/develop/.publicApi/Microsoft.AI.ServerTelemetryChannel.dll). When the Application Insights endpoint is unavailable or is throttling incoming requests, this channel [saves requests in the web app's file system and resubmits them later](/azure/azure-monitor/app/classic-api?tabs=dotnet#telemetry-channels).
1095
+
In version 2.*x*, the [`TelemetryClient`] instance created internally by the Application Insights provider for the WebJobs SDK uses `ServerTelemetryChannel`. When the Application Insights endpoint is unavailable or is throttling incoming requests, this channel [saves requests in the web app's file system and resubmits them later](/azure/azure-monitor/app/classic-api?tabs=dotnet#telemetry-channels).
1096
1096
1097
1097
[`TelemetryClient`] is created by a class that implements `ITelemetryClientFactory`. By default, this class is [`DefaultTelemetryClientFactory`](https://github.com/Azure/azure-webjobs-sdk/blob/dev/src/Microsoft.Azure.WebJobs.Logging.ApplicationInsights/).
Copy file name to clipboardExpand all lines: articles/azure-functions/scenario-blob-storage-events.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -260,7 +260,7 @@ You can review the code that defines the Event Grid blob trigger in the [Process
260
260
- Process blob content and copy it to another container by using streams
261
261
::: zone-end
262
262
::: zone pivot="programming-language-python"
263
-
You can review the code that defines the Event Grid blob trigger in the [function_app.py project file](https://github.com/Azure-Samples/functions-quickstart-python-azd-eventgrid-blob/blob/main/function_app.py). The function demonstrates how to:
263
+
You can review the code that defines the Event Grid blob trigger in the [function_app.py project file](https://github.com/Azure-Samples/functions-quickstart-python-azd-eventgrid-blob/blob/main/src/function_app.py). The function demonstrates how to:
264
264
265
265
- Use `@app.blob_trigger` with `source="EventGrid"` for near real-time processing
266
266
- Access blob content using the `InputStream` parameter
@@ -274,14 +274,14 @@ You can review the code that defines the Event Grid blob trigger in the [process
274
274
- Process and copy files to the destination container asynchronously
275
275
::: zone-end
276
276
::: zone pivot="programming-language-java"
277
-
You can review the code that defines the Event Grid blob trigger in the [ProcessBlobUpload.java project file](https://github.com/Azure-Samples/functions-quickstart-java-azd-eventgrid-blob/blob/main/src/main/java/com/contoso/ProcessBlobUpload.java). The function demonstrates how to:
277
+
You can review the code that defines the Event Grid blob trigger in the [ProcessBlobUpload.java project file](https://github.com/Azure-Samples/functions-quickstart-java-azd-eventgrid-blob/blob/main/src/src/main/java/com/microsoft/azure/samples/ProcessBlobUpload.java). The function demonstrates how to:
278
278
279
279
- Use `@BlobTrigger` with `source = "EventGrid"` for near real-time processing
280
280
- Access blob content using `BlobInputStream` parameter
281
281
- Copy processed files to the destination container using Azure Storage SDK for Java
282
282
::: zone-end
283
283
::: zone pivot="programming-language-powershell"
284
-
You can review the code that defines the Event Grid blob trigger in the [ProcessBlobUpload/run.ps1 project file](https://github.com/Azure-Samples/functions-quickstart-powershell-azd-eventgrid-blob/blob/main/ProcessBlobUpload/run.ps1) and the corresponding [function.json](https://github.com/Azure-Samples/functions-quickstart-powershell-azd-eventgrid-blob/blob/main/ProcessBlobUpload/function.json). The function demonstrates how to:
284
+
You can review the code that defines the Event Grid blob trigger in the [ProcessBlobUpload/run.ps1 project file](https://github.com/Azure-Samples/functions-quickstart-powershell-azd-eventgrid-blob/blob/main/src/processBlobUpload/run.ps1) and the corresponding [function.json](https://github.com/Azure-Samples/functions-quickstart-powershell-azd-eventgrid-blob/blob/main/src/processBlobUpload/function.json). The function demonstrates how to:
285
285
286
286
- Configure blob trigger with `"source": "EventGrid"` in function.json for near real-time processing
287
287
- Access blob content using PowerShell Azure Storage cmdlets
0 commit comments