如何修复警告:“由于重定向,应用程序评估不正常。” Azure 运行状况检查功能
Posted
技术标签:
【中文标题】如何修复警告:“由于重定向,应用程序评估不正常。” Azure 运行状况检查功能【英文标题】:How to fix warning: "Application evaluated unhealthy due to redirection." on Azure Health Check Feature 【发布时间】:2021-04-14 01:25:26 【问题描述】:我在其中一个应用服务内的 Azure 仪表板上运行了“诊断和解决问题”,然后我收到了这个严重的风险警报:“由于重定向,应用程序评估不正常。”。
建议的操作是:
If the application has HTTP to HTTPS redirectoin, consider one of the following solutions.
a. Enable 'HTTPs Only' from the TLS/SSL settings blade for the respective App Service. This will force health check pings to over 443.
b. Modify the Application logic/ad a URL Rewrite rule so that requests from the user agents – ReadyForRequest/1.0+(HealthCheck) & HealthCheck/1.0 are not redirected.
我已经按照 (a) 点的建议启用了“仅限 HTTPs”,但我不知道如何执行 (b) 点。如何修改应用程序逻辑/广告 URL 重写规则,以便来自用户代理的请求 - ReadyForRequest/1.0+(HealthCheck)
和 HealthCheck/1.0
不会被重定向?
目前,我启用了健康检查并将健康检查路径设置为/
。
在此之前感谢您的帮助。
【问题讨论】:
你试过什么?Use HealthChecks
的相关代码最好在帖子中更新。
Health checks in ASP.NET Core
@JasonPan 感谢 cmets,真的很高兴有人回复。我只尝试启用健康检查,将路径设置为/
,并将负载平衡时间设置为2分钟。你可以在这里看到:drive.google.com/file/d/1zedMyE0jHWMsb9mofvJ-FaBFpP0ZdNT2/…。这是 wordpress 网站的应用服务,但我使用 web.config 而不是 .htaccess。我想我需要更新 web.config。请在***.com/questions/65639409/…查看我的其他问题
【参考方案1】:
我下载了官方的样例,对代码做了一些修改,希望对你有用。
示例代码 --- .net core 3.X(HealthChecksSample)
方法一。
由于代码在.net core中,我首先推荐在Startup.cs
配置rewrite。
public void Configure(IApplicationBuilder app)
app.UseHealthChecks("/");
app.UseRouting();
app.MapWhen(
ctx => ctx.Request.Path.StartsWithSegments("/"),
appBuilder =>
appBuilder.UseMiddleware<HealthCheckMiddleware>();
);
app.UseEndpoints(endpoints =>
endpoints.MapHealthChecks("/");
endpoints.MapGet("/**path", async context =>
await context.Response.WriteAsync(
"Navigate to /health to see the health status.");
);
);
它适用于我,在本地和 azure web 应用程序中。
我会在你的另一篇文章中添加Method 2
。
【讨论】:
以上是关于如何修复警告:“由于重定向,应用程序评估不正常。” Azure 运行状况检查功能的主要内容,如果未能解决你的问题,请参考以下文章