I have a timer triggered Azure Function whitch executes every morning at 04:30 AM
public static void Run([TimerTrigger("0 30 4 * * *")] TimerInfo myTimer)
Now I noticed that the invocation log shows me quite different execution times:
This function worked like a charm. Since one week I notice the below issues:
How can this be that there are executions 2 minutes before the defined time? And why there are executions up to 8 minutes (!!) after the defined time?
Another strange behaviour is that in a different environment I see that the exact same Azure Function is triggered multiple times within the same minute:
Could this be an issue with the display in the invocation log or does somebody know more about this strange effect?
Any hint is highly appreciated!
![public static void Run([TimerTrigger("0 30 4 * * *")] TimerInfo myTimer)](https://mapledrawhubb.com/i.sstatic.net/urDsZ.png)

