Deployment history in AppService

juan maximiliano aguilar abanto 541 Reputation points
2020-03-03T03:58:32.46+00:00

Hi
I deploy to an appservice using Visual Studio 2019...
Is there a way to see a deployment history of this AppService in Azure.

3741-deploy.png

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,776 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. SnehaAgrawal-MSFT 21,506 Reputation points
    2020-03-03T05:15:59.253+00:00

    Thanks for asking question! There are few ways you can check deployment history.

    • Kudu API shows a log for previous deployments in Json.
    Access Kudu for your app service: https://[app_service_name].scm.azurewebsites.net
    Click Deployments from Rest API section.
    Direct link: https://[app_service_name]/api/deployments
    It shows the list of previous deployments with most recent at the top. When you do have CI/CD set up correctly, it will shows commit hash, build and release IDs, so you can trace the deployment back to the pipeline entry/commit.

    • You can go to your App Service, click 'Activity log' and set the timespan in which you think the deployment might have occurred (with a maximum of 90 days in the past)

    • You may also View deployment history with Azure Resource Manager


Your answer

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