Can someone with how to get the status for Azure Function. Here's the use case.
- User submits the lengthy form online on our website. Once the form is submitted on UI, the spinner comes up
- In background, my function kicks in and starts inserting the data to the database.
- Once data is inserted, I want the spinner to go away.
As of right now, i am not sure how to know when the function has processed all the data. I tried looking App insights, it seems the logs can be delayed by a few minutes. I also checked Durable functions but couldn't much figure out how to do that.
Any insights how can i achieve this? It is turning out to be more complex that I thought.
Thank you for the help!!!