NetEvolve.HealthChecks.Azure.Queues
3.4.0
See the version list below for details.
dotnet add package NetEvolve.HealthChecks.Azure.Queues --version 3.4.0
NuGet\Install-Package NetEvolve.HealthChecks.Azure.Queues -Version 3.4.0
<PackageReference Include="NetEvolve.HealthChecks.Azure.Queues" Version="3.4.0" />
paket add NetEvolve.HealthChecks.Azure.Queues --version 3.4.0
#r "nuget: NetEvolve.HealthChecks.Azure.Queues, 3.4.0"
// Install NetEvolve.HealthChecks.Azure.Queues as a Cake Addin #addin nuget:?package=NetEvolve.HealthChecks.Azure.Queues&version=3.4.0 // Install NetEvolve.HealthChecks.Azure.Queues as a Cake Tool #tool nuget:?package=NetEvolve.HealthChecks.Azure.Queues&version=3.4.0
NetEvolve.HealthChecks.Azure.Queues
This package provides a health check for Azure Queues, based on the Azure.Storage.Queues package. The main purpose is to check that the Azure Queue Service is reachable and that the client can connect to it.
💡 This package is available for .NET 6.0 and later.
Installation
To use this package, you need to add the package to your project. You can do this by using the NuGet package manager or by using the dotnet CLI.
dotnet add package NetEvolve.HealthChecks.Azure.Queues
Health Check - Azure Queue Client Availability
The health check is a liveness check. It will check that the Azure Queue Service is reachable and that the client can connect to it. If the service needs longer than the configured timeout to respond, the health check will return Degraded
. If the service is not reachable, the health check will return Unhealthy
.
Usage
After adding the package, yo need to import the namespace NetEvolve.HealthChecks.Azure.Queues
and add the health check to the service collection.
using NetEvolve.HealthChecks.Azure.Queues;
Therefor you can use two different approaches. In both approaches you have to provide a name for the health check.
Parameters
name
: The name of the health check. The name is used to identify the configuration object. It is required and must be unique within the application.options
: The configuration options for the health check. If you don't provide any options, the health check will use the configuration based approach.tags
: The tags for the health check. The tagsazure
,storage
andblob
are always used as default and combined with the user input. You can provide additional tags to group or filter the health checks.
Variant 1: Configuration based
The first one is to use the configuration based approach. Therefor you have to add the configuration section HealthChecks:AzureQueueClient
to your appsettings.json
file.
var builder = services.AddHealthChecks();
builder.AddAzureQueueClint("<name>");
The configuration looks like this:
{
..., // other configuration
"HealthChecks": {
"AzureQueueClient": {
"<name>": {
"ConnectionString": "<connection-string>", // required
"QueueName": "<queue-name>", // required
..., // other configuration
"Timeout": "<timeout>" // optional, default is 100 milliseconds
}
}
}
}
Variant 2: Options based
The second one is to use the options based approach. Therefor you have to create an instance of AzureQueueClientOptions
and provide the configuration.
var builder = services.AddHealthChecks();
builder.AddAzureQueueClient("<name>", options =>
{
options.ConnectionString = "<connection-string>";
options.QueueName = "<queue-name>";
...
options.Timeout = "<timeout>";
});
💡 You can always provide tags to all health checks, for grouping or filtering.
var builder = services.AddHealthChecks();
builder.AddKafka("<name>", options => ..., "azure");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Azure.Identity (>= 1.11.3)
- Azure.Storage.Queues (>= 12.18.0)
- NetEvolve.Arguments (>= 1.2.12)
- NetEvolve.Extensions.Tasks (>= 1.2.25)
- NetEvolve.HealthChecks.Abstractions (>= 3.4.0)
-
net7.0
- Azure.Identity (>= 1.11.3)
- Azure.Storage.Queues (>= 12.18.0)
- NetEvolve.Arguments (>= 1.2.12)
- NetEvolve.Extensions.Tasks (>= 1.2.25)
- NetEvolve.HealthChecks.Abstractions (>= 3.4.0)
-
net8.0
- Azure.Identity (>= 1.11.3)
- Azure.Storage.Queues (>= 12.18.0)
- NetEvolve.Arguments (>= 1.2.12)
- NetEvolve.Extensions.Tasks (>= 1.2.25)
- NetEvolve.HealthChecks.Abstractions (>= 3.4.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.