代码之家  ›  专栏  ›  技术社区  ›  eddyP23

将HealthCheck端点集成到Dotnet核心上的Swagger(开放式API)UI中

  •  0
  • eddyP23  · 技术社区  · 6 年前

    如前所述,我正在使用Dotnet核心运行状况检查 here . 简而言之,它看起来是这样的:

    首先,配置如下服务:

            services.AddHealthChecks()
                .AddSqlServer("connectionString", name: "SQlServerHealthCheck")
                ... // Add multiple other checks
    

    然后,注册这样一个端点:

            app.UseHealthChecks("/my/healthCheck/endpoint");
    

    我们也在使用Swagger(又称开放式API),我们通过Swagger UI看到所有端点,但没有健康检查端点。

    是否有一种方法可以将此添加到控制器方法中,以便Swagger自动拾取端点,或者以另一种方式将其与Swagger集成?

    到目前为止,我发现的最佳解决方案是添加自定义的硬编码端点( like described here ,但维护起来不好。

    1 回复  |  直到 6 年前
        1
  •  0
  •   eddyP23    6 年前

    仍在寻找更好的解决方案,但穷人解决这个问题的方法如下:

        public const string HealthCheckEndpoint = "/my/healthCheck/endpoint";
    
        public void Apply(SwaggerDocument swaggerDoc, DocumentFilterContext context)
        {
            var pathItem = new PathItem();
            pathItem.Get = new Operation()
            {
                Tags = new[] { "ApiHealth" },
                Produces = new[] { "application/json" }
            };
    
            var properties = new Dictionary<string, Schema>();
            properties.Add("status", new Schema(){ Type = "string" });
            properties.Add("errors", new Schema(){ Type = "array" });
    
            var exampleObject = new { status = "Healthy", errors = new List<string>()};
    
            pathItem.Get.Responses = new Dictionary<string, Response>();
            pathItem.Get.Responses.Add("200", new Response() {
                Description = "OK",
                Schema = new Schema() {
                    Properties = properties,
                    Example = exampleObject }});
    
            swaggerDoc.Paths.Add(HealthCheckEndpoint, pathItem);
        }