I have created an azure function in my trial version and I had set the time trigger to be 0 0 * * * * but is is running much more frequently than intended

vihari kandian 0 Reputation points
2024-07-18T09:01:34.77+00:00

User's image

Invocations shows, that the function was called for approx every 3 minutes, How do I resolve this?

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

1 answer

Sort by: Most helpful
  1. Deepanshukatara-6769 7,825 Reputation points
    2024-07-18T09:20:57.92+00:00

    Hi

    Update the Schedule value to 0 0 */1 * * *, and then select Save. then it should trigger on hourly basis

    Ref

    https://learn.microsoft.com/azure/azure-functions/functions-create-scheduled-function

    Kindly check and let us know if any further questions

    Please accept answer if it helps

    Thanks

    Deepanshu