๐—›๐—ฒ๐—ฎ๐—น๐˜๐—ต ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ๐˜€ ๐—ถ๐—ป ๐—”๐—ฆ๐—ฃ .๐—ก๐—˜๐—ง ๐—–๐—ผ๐—ฟ๐—ฒ

12 views
Skip to first unread message

Kiquenet

unread,
Mar 9, 2026, 7:52:21โ€ฏAMย (3 days ago)ย Mar 9
to AltNet-Hispano
๐—›๐—ฒ๐—ฎ๐—น๐˜๐—ต ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ๐˜€ ASP.NETWeb forms legacy ?

ย 
๐—›๐—ฒ๐—ฎ๐—น๐˜๐—ต ๐—–๐—ต๐—ฒ๐—ฐ๐—ธ๐˜€ ๐—ถ๐—ป ๐—”๐—ฆ๐—ฃ .๐—ก๐—˜๐—ง ๐—–๐—ผ๐—ฟ๐—ฒ

As systems grow more complex, you need fast feedback on whatโ€™s working and whatโ€™s not. Want to keep your app reliable and resilient? Thatโ€™s where health checks help. They monitor the health of key parts like: - APIs - Databases - Caches - External services .NET has built-in support for health checks, plus many ready-to-use NuGet packages. โœ… Expose a health check endpoint โœ… Integrate with cloud monitoring โœ… Auto-replace or reroute from unhealthy instances โœ… Wait for dependent services to come online If youโ€™re using Aspire, health checks are part of its core.

Kiquenet

unread,
Mar 9, 2026, 8:55:37โ€ฏAMย (3 days ago)ย Mar 9
to AltNet-Hispano
builder.Services.AddHealthChecks() .AddCheck<SqlHealthCheck>("custom-sql", HealthStatus.Unhealthy);

  • SQL Server -ย AspNetCore.HealthChecks.SqlServer

Kiquenet

unread,
Mar 9, 2026, 11:40:27โ€ฏAMย (3 days ago)ย Mar 9
to AltNet-Hispano

Configuraciรณn de la Interfaz de Usuario de Health Checks

Para aรฑadir la interfaz de usuario de health checks, debemos incluir la siguiente configuraciรณn:

builder.Services .AddHealthChecksUI() .AddInMemoryStorage();

El repositorioย AspNetCore.Diagnostics.HealthChecksย ofrece opciones de persistencia flexibles para la interfaz de usuario de health checks. Puedes elegir entre varias opciones de almacenamiento, como InMemory Storage, SQL Server Storage, Redis Storage y Elasticsearch Storage, para almacenar y acceder a los resultados de las verificaciones de salud.


Health Checks UI

Reply all
Reply to author
Forward
0 new messages