VOOZH about

URL: https://www.nuget.org/packages/NetEvolve.HealthChecks.AWS.EC2/

⇱ NuGet Gallery | NetEvolve.HealthChecks.AWS.EC2 5.13.335




👁 Image
NetEvolve.HealthChecks.AWS.EC2 5.13.335

Prefix Reserved
dotnet add package NetEvolve.HealthChecks.AWS.EC2 --version 5.13.335
 
 
NuGet\Install-Package NetEvolve.HealthChecks.AWS.EC2 -Version 5.13.335
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NetEvolve.HealthChecks.AWS.EC2" Version="5.13.335" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NetEvolve.HealthChecks.AWS.EC2" Version="5.13.335" />
 
Directory.Packages.props
<PackageReference Include="NetEvolve.HealthChecks.AWS.EC2" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NetEvolve.HealthChecks.AWS.EC2 --version 5.13.335
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: NetEvolve.HealthChecks.AWS.EC2, 5.13.335"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package NetEvolve.HealthChecks.AWS.EC2@5.13.335
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NetEvolve.HealthChecks.AWS.EC2&version=5.13.335
 
Install as a Cake Addin
#tool nuget:?package=NetEvolve.HealthChecks.AWS.EC2&version=5.13.335
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

NetEvolve.HealthChecks.AWS.EC2

👁 NuGet
👁 NuGet

This package provides a health check for AWS Elastic Compute Cloud (EC2), based on the AWS SDK for .NET package. The main purpose is to check that the EC2 service is reachable and that the client can connect to it.

💡 This package is available for .NET 8.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.AWS.EC2

Health Check - AWS EC2 Liveness

The health check is a liveness check. It will check that the EC2 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, you need to import the namespace and add the health check to the service collection.

using NetEvolve.HealthChecks.AWS.EC2;

Optionally, you can also add the namespace globally to your project by adding the following to your GlobalUsings.cs file.

global using NetEvolve.HealthChecks.AWS.EC2;

Parameters

  • name: The name of the health check. The name is used to identify the health check in the UI. Required.
  • options: The configuration options for the health check. Optional.
  • tags: The tags for the health check. Optional.
    • aws: This tag is always assigned to the health check.
    • ec2: This tag is always assigned to the health check.
    • compute: This tag is always assigned to the health check.

Variant 1: Configuration based

The first one is to use the configuration based approach. Therefore, you have to add the configuration section HealthChecks:AWSEC2 to your appsettings.json file.

var builder = services.AddHealthChecks();

builder.AddAWSEC2("<name>");

The configuration looks like this:

{
 ..., // other configuration
 "HealthChecks": {
 "AWSEC2": {
 "<name>": {
 "Region": "<aws-region>", // optional, uses default AWS region if not specified
 "AccessKey": "<access-key>", // optional, uses default AWS credentials if not specified
 "SecretKey": "<secret-key>", // optional, uses default AWS credentials if not specified
 "Timeout": "<timeout>" // optional, default is 100 milliseconds
 }
 }
 }
}

Variant 2: Builder based

The second approach is to use the builder based approach. This approach is recommended if you only have one EC2 service to check or dynamic programmatic values.

var builder = services.AddHealthChecks();

builder.AddAWSEC2("<name>", options =>
{
 options.Region = "<aws-region>"; // optional, uses default AWS region if not specified
 options.AccessKey = "<access-key>"; // optional, uses default AWS credentials if not specified
 options.SecretKey = "<secret-key>"; // optional, uses default AWS credentials if not specified
 options.Timeout = "<timeout>"; // optional, default is 100 milliseconds
 ... // other configuration
});

💡 You can always provide tags to all health checks, for grouping or filtering.

var builder = services.AddHealthChecks();

builder.AddAWSEC2("<name>", options => ..., "ec2");

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on NetEvolve.HealthChecks.AWS.EC2:

Package Downloads
NetEvolve.HealthChecks.AWS

Contains HealthChecks for various AWS services.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.13.335 117 6/1/2026
5.13.321 117 5/21/2026
5.13.198 129 4/7/2026
5.13.51 187 3/16/2026
5.13.1 123 3/3/2026
5.11.2 146 1/1/2026
5.10.32 146 12/29/2025
5.9.5 285 12/15/2025
5.8.0 471 12/8/2025
5.7.10 397 12/8/2025
5.5.2 164 11/29/2025
5.0.0 440 11/20/2025