4

VS 2015、.Net Framework 4.5.1、本地 IISExpress 和 Azure Web App

尝试遵循以下自愈配置设置:https ://azure.microsoft.com/en-us/blog/auto-healing-windows-azure-web-sites/

错误:元素“system.webServer”具有无效的子元素“监控”

当在 VS2015 中本地运行和部署到 azure Web 应用程序时,该应用程序编译但在运行时失败。

4

2 回答 2

2

我通过转换 Web.Release.config 文件解决了这个问题,例如:

<system.webServer>
<monitoring xdt:Transform="Insert">
    <triggers>
        <statusCode>
            <add statusCode="500" count="10" timeInterval="00:00:30" />
        </statusCode>
    </triggers>
</monitoring>
</system.webServer>
于 2016-05-18T01:39:34.703 回答
0

我还尝试在我的 Web 应用程序中包含此自动修复功能,并且在我的 web.config 中包含此功能并在本地运行时,我也遇到了内部服务器错误。

  <system.webServer>
    ...
    <monitoring>
      <triggers>
        <slowRequests timeTaken="00:00:30" count="5" timeInterval="00:10:00" />
      </triggers>
      <actions value="Recycle" />
    </monitoring>
  </system.webServer>

但是,在我的 azure 出版物中,我修改了 web.config(使用 kudu)并重新启动了我的 Web 应用程序,没有出现任何错误。

我的是标准应用服务计划

目前我还没有验证这个触发器是否有效果

希望这可以帮助 !

于 2016-12-08T13:04:01.863 回答