Skip to content

Commit 3fdb816

Browse files
committed
fix warnings
1 parent 13df1f2 commit 3fdb816

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

articles/app-service/overview-webjobs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For more scalable, independently hosted, or event-driven workloads, consider usi
3838
WebJobs come in three main types:
3939

4040
- **Triggered WebJobs**: Run on demand or in response to specific events. You can trigger them manually or from a service like Azure Storage.
41-
- **Scheduled WebJobs**: A specialized type of triggered WebJob that runs on a defined schedule using a `settings.job` file with [NCRONTAB expressions](webjobs-create.md##ncrontab-expressions).
41+
- **Scheduled WebJobs**: A specialized type of triggered WebJob that runs on a defined schedule using a `settings.job` file with [NCRONTAB expressions](webjobs-create.md#ncrontab-expressions).
4242
- **Continuous WebJobs**: Run persistently in the background while your App Service app is running. Ideal for queue polling or background monitoring tasks.
4343

4444

@@ -102,7 +102,7 @@ If you need independently scalable or event-driven execution, [Azure Functions](
102102

103103
## Related guidance
104104

105-
- [Background jobs best practices – Azure Architecture Center](../architecture/best-practices/background-jobs.md)
105+
- [Background jobs best practices – Azure Architecture Center](/azure/architecture/best-practices/background-jobs.md)
106106
- [Develop WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md)
107107
- [Get started with the WebJobs SDK](webjobs-sdk-get-started.md)
108108
- [Use the WebJobs SDK to build advanced jobs](webjobs-sdk-how-to.md)

articles/app-service/quickstart-webjobs.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'Create a scheduled WebJob using a prebuilt script'
33
description: Quickly schedule a time-based WebJob in Azure App Service using a prebuilt script for Windows or Linux.
44
ms.topic: quickstart
5-
ms.date: 4/24/2025
5+
ms.date: 5/2/2025
66
author: msangapu-msft
77
ms.author: msangapu
88
ms.reviewer: glenga
@@ -22,7 +22,7 @@ WebJobs in Azure App Service let you run scripts or programs as background tasks
2222
- Enable **Always On** in the App Service settings: [Configure Always On](configure-common.md?tabs=portal#configure-general-settings)
2323
- For Windows containers and all Linux apps, set the app setting `WEBSITE_SKIP_RUNNING_KUDUAGENT = false`
2424

25-
## Step 1: Download a sample WebJob
25+
## Download a sample WebJob
2626

2727
Choose the version that matches your App Service OS:
2828

@@ -33,7 +33,7 @@ Choose the version that matches your App Service OS:
3333

3434
Each zip contains a single script that prints the current system date and time.
3535

36-
## Step 2: Add the WebJob in the Azure portal
36+
## Add the WebJob in the Azure portal
3737

3838
1. In the [Azure portal](https://portal.azure.com), go to your **App Service** app.
3939
2. In the left menu, select **WebJobs** > **+ Add**.
@@ -49,13 +49,13 @@ Each zip contains a single script that prints the current system date and time.
4949

5050
4. Select **OK** to create the WebJob.
5151

52-
## Step 3: Monitor WebJob logs
52+
## Verify the WebJob
5353

5454
1. Go to the **WebJobs** tab.
5555
2. Select your WebJob and open **Logs**.
5656
3. Confirm that it runs every minute and prints the system time.
5757

58-
## Step 4: Clean up
58+
## Clean up
5959

6060
To remove the WebJob, select the WebJob in the portal and select `Delete`.
6161

articles/app-service/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ items:
466466
- name: Overview
467467
href: overview-webjobs.md
468468
- name: Background jobs best practices (Architecture Center)
469-
href: ../architecture/best-practices/background-jobs?toc=/azure/app-service/toc.json&bc=/azure/app-service/breadcrumb/toc.json
469+
href: /azure/architecture/best-practices/background-jobs?toc=/azure/app-service/toc.json&bc=/azure/app-service/breadcrumb/toc.json
470470
displayName: WebJobs overview
471471
- name: WebJobs Quickstart
472472
href: quickstart-webjobs.md

articles/app-service/webjobs-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,4 @@ The following is a list of common WebJob states:
183183

184184
## <a name="NextSteps"></a> Next step
185185

186-
The Azure WebJobs SDK can be used with WebJobs to simplify many programming tasks. For more information, see [What is the WebJobs SDK](https://github.com/Azure/azure-webjobs-sdk/wiki).
186+
[Tutorial: Run background tasks with WebJobs](tutorial-webjobs.md)

articles/app-service/webjobs-execution.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ WebJob logs are handled by the Kudu engine and are available under the `App_Data
8080
```
8181
https://<your-app>.scm.azurewebsites.net/api/triggeredwebjobs/<job>/history
8282
```
83-
For more advanced monitoring and querying capabilities, consider integrating with [Application Insights](../../azure-monitor/app/app-insights-overview.md).
83+
For more advanced monitoring and querying capabilities, consider integrating with [Application Insights](/azure/azure-monitor/app/app-insights-overview.md).
8484

8585
Triggered WebJobs include a full history of executions. Continuous WebJobs stream logs in real time.
8686

@@ -99,6 +99,4 @@ Triggered WebJobs include a full history of executions. Continuous WebJobs strea
9999
## See also
100100

101101
- [WebJobs overview](overview-webjobs.md)
102-
- [Create a scheduled WebJob](quickstart-webjobs.md)
103-
- [Kudu WebJobs wiki (GitHub)](https://github.com/projectkudu/kudu/wiki/WebJobs)
104-
102+
- [Create a scheduled WebJob](quickstart-webjobs.md)

0 commit comments

Comments
 (0)