Azure function pipeline succeeds however function app doesn't appear to be live

Billy Connors 0 Reputation points
2026-02-05T10:25:26.47+00:00

I've been attempting to create an azure function and have been running into difficulty. It appears that the pipeline I've built on devops succeeds in running but when I look at the function app it doesn't seem like it's started. I get 503 errors when I try to access either the root of the website or the host. I've reset my function itself to the most basic function created when you create a new azure function in Visual Studio to ensure that the issue isn't coming from there. The Log Stream appears to be broken as it shows Connected! and then nothing else no matter if I restart the app. The pipeline succeeds in its final AzureFunctionApp@2.

When I look up troubleshooting steps, the majority appear to use developer tools that don't seem to exist for my flex consumption function on Linux as Recommended Services is the only thing that appears under Development Tools. With logs appearing to be broken and no development tools, what other steps can I take to debug why the function isn't running successfully after deployment?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
{count} votes

1 answer

Sort by: Most helpful
  1. Q&A Assist
    2026-02-05T10:26:40.61+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    It sounds like you're experiencing issues with your Azure Function App not starting properly after deployment, despite the pipeline succeeding. Here are some troubleshooting steps you can consider:

    1. Check Function App Status: Ensure that your Function App is running. You can do this in the Azure portal by navigating to your Function App and checking the status.
    2. Review Application Insights: If you have Application Insights set up, check the telemetry data for any errors or performance issues that might indicate why the function isn't running.
    3. Diagnose and Solve Problems Tool: Use the "Diagnose and solve problems" feature in the Azure portal for your Function App. This tool can help identify common issues and provide guidance on how to resolve them.
    4. Check for Resource Consumption: High resource consumption can lead to issues. Monitor the CPU and memory usage of your Function App to ensure it is not exceeding limits, especially if you are on a Consumption plan.
    5. Function Host Not Running: If you see the error "Function host not running," it may indicate that the function app is not able to start properly. Review the logs for any startup errors.
    6. Access Denied Errors: If you encounter access denied errors, ensure that the necessary permissions are set for your Function App to access required resources.
    7. Try Restarting the Function App: Sometimes, simply restarting the Function App can resolve transient issues.
    8. Check for Deployment Errors: Review the deployment logs in Azure DevOps to ensure there were no hidden errors during the deployment process that could affect the app's functionality.

    If the Log Stream is not providing any output, it may be indicative of deeper issues with the function app itself. If none of these steps resolve the issue, consider reaching out to Azure support for further assistance.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.