Skip to content

Commit 288e924

Browse files
Merge pull request #309309 from Albertyang0/2025_12-Monthly-broken-links-fix-105
2025_12 - Fix monthly broken links
2 parents 6f670aa + 23f087b commit 288e924

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

articles/app-service/webjobs-sdk-how-to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,7 @@ In version 3.*x*, you don't have to flush [`TelemetryClient`] when the host stop
10921092

10931093
#### Version 2.*x*
10941094

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

10971097
[`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/).
10981098

articles/azure-functions/scenario-blob-storage-events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ You can review the code that defines the Event Grid blob trigger in the [Process
260260
- Process blob content and copy it to another container by using streams
261261
::: zone-end
262262
::: 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:
264264

265265
- Use `@app.blob_trigger` with `source="EventGrid"` for near real-time processing
266266
- 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
274274
- Process and copy files to the destination container asynchronously
275275
::: zone-end
276276
::: 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:
278278

279279
- Use `@BlobTrigger` with `source = "EventGrid"` for near real-time processing
280280
- Access blob content using `BlobInputStream` parameter
281281
- Copy processed files to the destination container using Azure Storage SDK for Java
282282
::: zone-end
283283
::: 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:
285285

286286
- Configure blob trigger with `"source": "EventGrid"` in function.json for near real-time processing
287287
- Access blob content using PowerShell Azure Storage cmdlets

0 commit comments

Comments
 (0)