Azure Function Replay button

Kristina 1 Reputation point
2021-02-02T17:17:28.733+00:00

Hi, I have a function that continues to replay based on clicking the Replay Function button. The parameters are invalid, so the recurring calls stay in a Running state. Where can I go to stop this call? Restarting the app service and webjob did not help. I can't seem to find any good documentation on the Replay Function button or the Abort Host button.

63144-image.png

63191-image.png

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,321 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Pramod Valavala 20,591 Reputation points Microsoft Employee
    2021-02-15T13:33:57.283+00:00

    The WebJobs Dashboard is deprecated from v3 of the WebJobs SDK. The recommendation is to use App Insights for monitoring invocations instead.

    As for the Replay Button, it manually triggers the webjobs with the same input parameters if any and allows you to change them if required too. As for the status of the jobs, the logs are used to track the status of an invocation. In your case, I believe the webjob might have been stuck and/or restarted when it was running. Hence, the state.

    Though old, this video highlights the WebJobs Dashboard including the replay. But do note that the WebJobs Dashboard is now deprecated.

    0 comments No comments