According to this Microsoft guide: https://learn.microsoft.com/en-us/azure/app-service/webjobs-create when right-clicking a web job, there should be a context menu. However, no menu appears when I right-click on a web-job. I am not seeing any context menus when right-clicking on elements in the Azure portal. So two questions along the same line:
As per the document the optionS available on right click are Logs
, Delete
,Stop
and Properties
.
Image from Document:
no menu appears when I right-click on a web-job.
Thanks @TZHX for the comment.
As mentioned by TZHX may be the UI must have changed.
Even I didn't find option to right click on the Web Jobs.
The Logs
and Delete
option is available in the created Job List itself.
I have referred this MSDoc to stop a WebJob.
As an alternative to Stop
a Web Job
we can use Azure CLI
command.
az webapp webjob continuous stop --name AppInsightsWebJob --resource-group YourResourceGroup --webjob-name MyJob
Run
.