31 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.Files.DataLake (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)
220builder.ApplicationBuilder.Services.AddHealthChecks().Add(new HealthCheckRegistration(
Aspire.Hosting.Azure.Kusto (1)
AzureKustoHealthCheckBuilderExtensions.cs (1)
27var registration = new HealthCheckRegistration(name, sp => new AzureKustoHealthCheck(connectionStringFactory(sp), isCluster), failureStatus: default, tags: default, timeout: default);
Aspire.Hosting.DevTunnels (2)
DevTunnelResourceBuilderExtensions.cs (2)
93builder.Services.AddHealthChecks().Add(new HealthCheckRegistration( 589tunnelBuilder.ApplicationBuilder.Services.AddHealthChecks().Add(new HealthCheckRegistration(
Aspire.Hosting.Foundry (2)
FoundryExtensions.cs (2)
159.Add(new HealthCheckRegistration( 384.Add(new HealthCheckRegistration(
Aspire.Hosting.GitHub.Models (1)
GitHubModelsExtensions.cs (1)
201.Add(new HealthCheckRegistration(
Aspire.Hosting.Nats (1)
NatsBuilderExtensions.cs (1)
89.Add(new HealthCheckRegistration(
Aspire.Hosting.OpenAI (1)
OpenAIExtensions.cs (1)
213.Add(new HealthCheckRegistration(
Aspire.Hosting.Qdrant (1)
QdrantBuilderExtensions.cs (1)
63.Add(new HealthCheckRegistration(
Aspire.Hosting.Tests (1)
Health\ResourceHealthCheckServiceTests.cs (1)
102builder.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)