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/quickstart-webjobs.md
+4-37Lines changed: 4 additions & 37 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,49 +53,16 @@ Each zip contains a single script that prints the current system date and time.
53
53
54
54
## Step 3: Monitor WebJob logs
55
55
56
-
Select the log for the WebJob you created earlier.
57
-
58
-
:::image type="content" source="media/quickstart-webjobs/review-webjobs-logs.png" alt-text="Screenshot that shows how to view WebJob logs in an App Service app in the portal (scheduled WebJob).":::
59
-
60
-
61
-
The output should look similar to the following.
62
-
63
-
:::image type="content" source="media/quickstart-webjobs/webjobs-log-output.png" alt-text="Screenshot that shows WebJobs log output.":::
56
+
1. Go to the **WebJobs** tab.
57
+
2. Select your WebJob and open **Logs**.
58
+
3. Confirm that it runs every minute and prints the system time.
64
59
65
60
## Step 4: Clean up
66
61
67
62
To remove the WebJob, select the WebJob in the portal and select `Delete`.
68
63
69
-
:::image type="content" source="media/quickstart-webjobs/delete-webjobs.png" alt-text="Screenshot showing how you can delete a WebJob in the portal.":::
70
-
71
64
## <aname="NextSteps"></a> Next steps
72
65
73
66
## Next step
74
67
75
-
[Build a custom scheduled WebJob from scratch using .NET, Python, Node.js, Java, or PHP](tutorial-webjobs.md)
76
-
77
-
## Create a scheduled WebJob in Azure
78
-
79
-
1. In the [Azure portal](https://portal.azure.com), go to the **App Service** page of your App Service app.
80
-
81
-
1. From the left pane, select **WebJobs**, then select **Add**.
82
-
83
-
:::image type="content" source="media/webjobs-create/add-webjob.png" alt-text="Screenshot that shows how to add a WebJob in an App Service app in the portal (scheduled WebJob).":::
84
-
85
-
1. Fill in the **Add WebJob** settings as specified in the table, then select **Create Webjob**. For **File Upload**, be sure to select the .zip file you downloaded earlier in the [Download the sample WebJob](#download-the-sample-webjob) section.
86
-
87
-
:::image type="content" source="media/webjobs-create/configure-new-scheduled-webjob.png" alt-text="Screenshot that shows how to configure a scheduled WebJob in an App Service app.":::
|**Name**| webjob | The WebJob name. Must start with a letter or a number and must not contain special characters other than "-" and "_". |
92
-
|**File Upload**| webjob.zip | The *.zip* file that contains your executable or script file. The supported file types are listed in the [supported file types](webjobs-create.md?tabs=windowscode#acceptablefiles) section. |
93
-
|**Type**| Triggered | Specifies when the WebJob runs: Continuous or Triggered. |
94
-
|**Triggers**| Scheduled | Scheduled or Manual. Ensure [Always on](configure-common.md?tabs=portal#configure-general-settings) is enabled for the schedule to work reliably.|
95
-
|**CRON Expression**| 0 0/1 * * * * | For this quickstart, we use a schedule that runs every minute. See [CRON expressions](webjobs-create.md?tabs=windowscode#ncrontab-expressions) to learn more about the syntax. |
96
-
97
-
1. The new WebJob appears on the **WebJobs** page. If you see a message that says the WebJob was added, but you don't see it, select **Refresh**.
98
-
99
-
1. The scheduled WebJob is run at the schedule defined by the CRON expression.
100
-
101
-
:::image type="content" source="media/webjobs-create/scheduled-webjob-run.png" alt-text="Screenshot that shows how to run a manually scheduled WebJob in the Azure portal.":::
68
+
[Build a custom scheduled WebJob from scratch using .NET, Python, Node.js, Java, or PHP](tutorial-webjobs.md)
0 commit comments