@Admin Stabe, Nicole Thanks for reaching out.
As you are scheduling your function app to run every minute and in case if your function app takes more than 1 minute to get the execution completed then the next execution would be missed.
It uses the history to "catch up" on missed schedule executions, if for some reason an occurrence was missed. You can disable that behavior if you wish by setting UseMonitor = false
on your TimerTrigger
attribute.
For more details on investigating the timer triggered functions not firing you can refer to this documement.
To understand more about how the timer trigger works please refer to this document.
In case if the above document didn't help then you can also refer to Diagnose and solve problems blade on your function app to know more details why the timer trigger didn't fire.
Feel free to get back to me if you need any assistance.
Please "Accept Answer" if the answer is helpful so that it can help others in the community.