30 references to HealthCheckRegistration
Aspire.Azure.AI.Inference (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Azure.AI.OpenAI (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Azure.Data.Tables (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Azure.Messaging.EventHubs (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Azure.Messaging.ServiceBus (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Azure.Messaging.WebPubSub (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Azure.Search.Documents (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Azure.Security.KeyVault (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Azure.Storage.Blobs (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Azure.Storage.Queues (1)
src\Components\Common\AzureComponent.cs (1)
116builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Hosting (1)
ExternalServiceBuilderExtensions.cs (1)
216builder.ApplicationBuilder.Services.AddHealthChecks().Add(new HealthCheckRegistration(
Aspire.Hosting.Azure.AIFoundry (2)
AzureAIFoundryExtensions.cs (2)
152.Add(new HealthCheckRegistration( 340.Add(new HealthCheckRegistration(
Aspire.Hosting.Azure.Kusto (1)
AzureKustoHealthCheckBuilderExtensions.cs (1)
25var registration = new HealthCheckRegistration(name, sp => new AzureKustoHealthCheck(connectionStringFactory(sp), isCluster), failureStatus: default, tags: default, timeout: default);
Aspire.Hosting.DevTunnels (2)
DevTunnelResourceBuilderExtensions.cs (2)
88builder.Services.AddHealthChecks().Add(new HealthCheckRegistration( 498tunnelBuilder.ApplicationBuilder.Services.AddHealthChecks().Add(new HealthCheckRegistration(
Aspire.Hosting.GitHub.Models (1)
GitHubModelsExtensions.cs (1)
168.Add(new HealthCheckRegistration(
Aspire.Hosting.Nats (1)
NatsBuilderExtensions.cs (1)
85.Add(new HealthCheckRegistration(
Aspire.Hosting.OpenAI (1)
OpenAIExtensions.cs (1)
208.Add(new HealthCheckRegistration(
Aspire.Hosting.Qdrant (1)
QdrantBuilderExtensions.cs (1)
62.Add(new HealthCheckRegistration(
Aspire.Hosting.Tests (1)
Health\ResourceHealthCheckServiceTests.cs (1)
101builder.Services.AddHealthChecks().Add(new HealthCheckRegistration(
Aspire.Microsoft.Data.SqlClient (1)
AspireSqlServerSqlClientExtensions.cs (1)
101builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Milvus.Client (1)
AspireMilvusExtensions.cs (1)
90builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.MySqlConnector (1)
AspireMySqlConnectorExtensions.cs (1)
81builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.NATS.Net (1)
AspireNatsClientExtensions.cs (1)
170builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Npgsql (1)
AspirePostgreSqlNpgsqlExtensions.cs (1)
79builder.TryAddHealthCheck(new HealthCheckRegistration(
Aspire.Qdrant.Client (1)
AspireQdrantExtensions.cs (1)
90builder.TryAddHealthCheck(new HealthCheckRegistration(
Microsoft.Extensions.Diagnostics.HealthChecks (2)
DependencyInjection\HealthChecksBuilderAddCheckExtensions.cs (2)
126return builder.Add(new HealthCheckRegistration(name, GetServiceOrCreateInstance, failureStatus, tags, timeout)); 254return builder.Add(new HealthCheckRegistration(name, CreateInstance, failureStatus, tags, timeout));
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions (1)
HealthCheckRegistration.cs (1)
88: this(name, factory, failureStatus, tags, default)