0

我需要一些关于这个项目的帮助。问题如下,我需要在我的服务中添加一个健康检查:

// Add the health checks.
services.AddHealthChecks()
        .AddSqlServer(Configuration["ConnectionStrings:MyConnectionString"])
        .AddCheck("Offices Health Check", new OfficeHealthCheck(), HealthStatus.Unhealthy)
;

为此,我有一个类“OfficeHealthCheck.cs”,它实现了 IHealthCheck 并定义了以下函数:

private async Task<bool> GetOffices()
{
    bool isHealthy = false;

    Uri apiUri = new Uri("http://localhost:58355/api/offices");

    using (HttpClient client = new HttpClient())
    {
        var result = await client.GetAsync(apiUri);

        if (result.IsSuccessStatusCode)
            isHealthy = true;
    }

    return isHealthy;
}

我要解决的问题是如何将“localhost:58355”更改为我正在运行服务的当前服务器(运行状况检查和我正在调用的 enpoint 都是同一服务的一部分),例如http ://myproductionserver.com/api/officeshttp://mystageserver.org/api/offices等等...

我阅读了一些文章,其中提到添加一个单例,但我未能正确实现 IHttpContextAccessor。我添加了单例并在对象中添加了如下部分:

public class OfficeHealthCheck : IHealthCheck
    {
private readonly IHttpContextAccessor _httpContextAccesor;

public RegionHealthCheck(IHttpContextAccessor httpContextAccessor) { 
    _httpContextAccesor = httpContextAccessor
}

但是现在它要求我将 IHttpContextAccessor 的实例传递给这一行中的构造函数,我不知道该怎么做:

// Add the health checks.
        .AddCheck("Offices Health Check", new OfficeHealthCheck() 
;

任何帮助,将不胜感激

4

1 回答 1

0

改变这个:

// Add the health checks.
        .AddCheck("Offices Health Check", new OfficeHealthCheck() 

对此:

// Add the health checks.
        .AddCheck<OfficeHealthCheck>("Offices Health Check") 
于 2020-08-04T19:39:00.323 回答