Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Use IAbpApplicationConfigurationAppService to check website health. #270

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,28 @@
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Diagnostics.HealthChecks;
using Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations;
using Volo.Abp.DependencyInjection;
using Volo.Abp.Identity;

namespace EShopOnAbp.PublicWeb.HealthChecks;

public class EShopOnAbpHealthCheck : IHealthCheck, ITransientDependency
{
protected readonly IIdentityUserAppService IdentityUserAppService;
protected readonly IAbpApplicationConfigurationAppService ApplicationConfigurationAppService;

public EShopOnAbpHealthCheck(IIdentityUserAppService identityUserAppService)
public EShopOnAbpHealthCheck(IAbpApplicationConfigurationAppService applicationConfigurationAppService)
{
IdentityUserAppService = identityUserAppService;
ApplicationConfigurationAppService = applicationConfigurationAppService;
}

public async Task<HealthCheckResult> CheckHealthAsync(HealthCheckContext context, CancellationToken cancellationToken = default)
{
try
{
await IdentityUserAppService.GetListAsync(new GetIdentityUsersInput { MaxResultCount = 1 });
await ApplicationConfigurationAppService.GetAsync(new ApplicationConfigurationRequestOptions()
{
IncludeLocalizationResources = false
});

return HealthCheckResult.Healthy($"Could connect to database and get record.");
}
Expand Down
Loading