Skip to content

Commit 20591e0

Browse files
authored
Merge pull request #4 from desenvolvedor-io/master
fix: Adding generic health checks
2 parents 21e1dcd + 2f837c7 commit 20591e0

File tree

10 files changed

+23
-0
lines changed

10 files changed

+23
-0
lines changed
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using Microsoft.AspNetCore.Builder;
2+
using Microsoft.Extensions.DependencyInjection;
3+
4+
namespace DevStore.WebAPI.Core.Configuration
5+
{
6+
public static class GenericHealthCheck
7+
{
8+
public static void AddGenericHealthCheck(this IServiceCollection services)
9+
{
10+
services.AddHealthChecks();
11+
}
12+
13+
public static void UseGenericHealthCheck(this WebApplication app, string path)
14+
{
15+
app.MapHealthChecks(path);
16+
}
17+
}
18+
}
Binary file not shown.
-66 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

src/services/DevStore.ShoppingCart.API/Configuration/ApiConfig.cs

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using DevStore.WebAPI.Core.DatabaseFlavor;
33
using static DevStore.WebAPI.Core.DatabaseFlavor.ProviderConfiguration;
44
using DevStore.ShoppingCart.API.Data;
5+
using DevStore.WebAPI.Core.Configuration;
56

67
namespace DevStore.ShoppingCart.API.Configuration
78
{
@@ -22,6 +23,8 @@ public static void AddApiConfiguration(this IServiceCollection services, IConfig
2223
.AllowAnyMethod()
2324
.AllowAnyHeader());
2425
});
26+
27+
services.AddGenericHealthCheck();
2528
}
2629

2730
public static void UseApiConfiguration(this WebApplication app, IWebHostEnvironment env)
@@ -39,6 +42,8 @@ public static void UseApiConfiguration(this WebApplication app, IWebHostEnvironm
3942
app.UseAuthorization();
4043

4144
app.MapGrpcService<ShoppingCartGrpcService>().RequireCors("Total");
45+
46+
app.UseGenericHealthCheck("/healthz");
4247
}
4348
}
4449
}
Binary file not shown.

0 commit comments

Comments
 (0)