We are developing a website health module that will require that we run a scheduler that will perform a http request per website every 2 minutes (but we also imagine each website has it's own interval)
Now, I'm having trouble finding the way to perform this task specially due to scalability.
I think we need to have a scheduled function per website that will run on its own and therefore rely on the Scheduler API to create thousands of schedulers but I don't even know if Azure allows so many schedulers...
Any thought on the best way to achieve this?