在Azure App Service中查找最近的部署日期时间(历史记录) [英] Find recent deployment date time (History) in Azure App Service

查看:49
本文介绍了在Azure App Service中查找最近的部署日期时间(历史记录)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

其中一个应用程序存在问题.不幸的是,它没有在持续集成中进行配置.现在,我们需要找出具有日期时间的最新/最新部署历史记录.

There is issue in one of our application. Unfortunately, It wasn't configured on continuous integration. Now we need to find out the recent / latest deployment history with date time.

您能帮我在App Service中找到部署历史吗?

Could you please help me to find the deployment history in App Service?

推荐答案

您能帮我在App Service中找到部署历史吗?

Could you please help me to find the deployment history in App Service?

您可以通过查看MSDeploy日志进行检查.这是Azure Web App中的文件夹路径.

You could check it by review the MSDeploy log. Here is the folder path in Azure Web App.

D:\home\LogFiles\SiteExtensions\MSDeploy

此日志文件夹中有一个appManagerLog.xml文件.我们可以从kudu查看它.这是一个示例日志文件.如果执行部署操作,它将在此日志中添加2个条目.我们可以从该日志文件的最后一个条目中获得最新的部署日期.

There is a appManagerLog.xml file in this log folder. We can view it from kudu. Here is a sample log file. It will add 2 entries to this log if a deploy action executed. We could get the latest deploy date from the last entry of this log file.

<?xml version="1.0" encoding="UTF-8"?>
<entries>
    <entry type="Message" time="2017-06-16T06:35:17.9453425Z">
        <message>[Verbose] Skip function trigger and logicapp sync because function is not enabled.</message>
    </entry>
    <entry type="Message" time="2017-06-16T06:35:17.9453425Z">
        <message>[Verbose] AutoSwap is not enabled</message>
    </entry>
</entries>

这篇关于在Azure App Service中查找最近的部署日期时间(历史记录)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆