NetPro.Consul.AspNetCore
1.7.1-beta.3
dotnet add package NetPro.Consul.AspNetCore --version 1.7.1-beta.3
NuGet\Install-Package NetPro.Consul.AspNetCore -Version 1.7.1-beta.3
<PackageReference Include="NetPro.Consul.AspNetCore" Version="1.7.1-beta.3" />
paket add NetPro.Consul.AspNetCore --version 1.7.1-beta.3
#r "nuget: NetPro.Consul.AspNetCore, 1.7.1-beta.3"
// Install NetPro.Consul.AspNetCore as a Cake Addin #addin nuget:?package=NetPro.Consul.AspNetCore&version=1.7.1-beta.3&prerelease // Install NetPro.Consul.AspNetCore as a Cake Tool #tool nuget:?package=NetPro.Consul.AspNetCore&version=1.7.1-beta.3&prerelease
Background Information
This library is fork from another library consuldotnet
current library support ttl health check <p align="left"><img width="500" height="250" src=logo/svg/Consul.NET_SignatureLogo_RGB-Black.svg alt="Consul.NET"/></p>
- Consul API: v1.6.10
- .NET: >= 4.6.1 - .NET Core: >= 2.0.0
Consul.NET is a .NET port of the Go Consul API, but reworked to use .NET idioms such as Tasks/CancellationTokens instead of Goroutines/Channels. The majority of the calls directly track the HTTP API, but this API does have additional functionality that is provided in the Go API, like Locks and Semaphores.
Example
You'll need a running Consul Server on your local machine, or a Consul Agent connected to a Consul Server cluster. To run a local server:
- Download a copy of the latest Windows
version and unzip it into the
Consul.Test
folder. - Open a command prompt and
cd
to theConsul.Test
folder. - Run
.\consul.exe agent -dev -config-file test_config.json
This creates a 1-server cluster that operates in "dev" mode (does not
write data to disk) and listens on 127.0.0.1:8500
.
Once Consul is running (you'll see something like ==> Consul agent running!
) in your command prompt, then do the following
steps in your project.
Add a reference to the Consul library and add a using statement:
using Consul;
Write a function to talk to the KV store:
public static async Task<string> HelloConsul()
{
using (var client = new ConsulClient())
{
var putPair = new KVPair("hello")
{
Value = Encoding.UTF8.GetBytes("Hello Consul")
};
var putAttempt = await client.KV.Put(putPair);
if (putAttempt.Response)
{
var getPair = await client.KV.Get("hello");
return Encoding.UTF8.GetString(getPair.Response.Value, 0,
getPair.Response.Value.Length);
}
return "";
}
}
And call it:
Console.WriteLine(HelloConsul().GetAwaiter().GetResult());
You should see Hello Consul
in the output of your program. You should
also see the following lines in your command prompt, if you're running
a local Consul server:
[DEBUG] http: Request /v1/kv/hello (6.0039ms)
[DEBUG] http: Request /v1/kv/hello (0)
The API just went out to Consul, wrote "Hello Consul" under the key "hello", then fetched the data back out and wrote it to your prompt.
Usage
All operations are done using a ConsulClient
object. First,
instantiate a ConsulClient
object, which connects to localhost:8500
,
the default Consul HTTP API port. Once you've got a ConsulClient
object, various functionality is exposed as properties under the
ConsulClient
.
All responses are wrapped in QueryResponse
and WriteResponse
classes, which provide metadata about the request, like how long it
took and the monotonic Consul index when the operation occured.
This API also assumes some knowledge of Consul, including things like blocking queries and consistency modes
ACL
The ACL endpoints are used to create, update, destroy, and query Legacy ACL tokens.
ACLReplication
The ACLReplication endpoint is used to query the status of ACL Replication.
Agent
The Agent endpoints are used to interact with the local Consul agent. Usually, services and checks are registered with an agent which then takes on the burden of keeping that data synchronized with the cluster. For example, the agent registers services and checks with the Catalog and performs anti-entropy to recover from outages.
AuthMethod
The AuthMethod endpoints are used to create, update, destroy, and query ACL Auth Methods related to ACL Replication. These are untested and a place-holder for future changes.
Catalog
The Catalog is the endpoint used to register and deregister nodes, services, and checks. It also provides query endpoints.
Event
The Event endpoints are used to fire new events and to query the available events.
Health
The Health endpoints are used to query health-related information. They are provided separately from the Catalog since users may prefer not to use the optional health checking mechanisms. Additionally, some of the query results from the Health endpoints are filtered while the Catalog endpoints provide the raw entries.
KV
The KV endpoint is used to access Consul's simple key/value store, useful for storing service configuration or other metadata.
Policy
The Policy endpoint is used to create, update, delete and read ACL Policies
Role
The Role endpoint is used to create, update, delete and read ACL Roles
Query
The Prepared Query endpoints are used to create, update, destroy, and execute prepared queries. Prepared queries allow you to register a complex service query and then execute it later via its ID or name to get a set of healthy nodes that provide a given service.
Session
The Session endpoints are used to create, destroy, and query sessions.
Status
The Status endpoints are used to get information about the status of the Consul cluster. This information is generally very low level and not often useful for clients.
Token
The Token endpoint is used to create, update, clone, delete and read ACL Tokens
Additional Functions
Functionality based on the Consul guides using the available primitives has been implemented as well, just like the Go API.
Lock
Lock is used to implement client-side leader election for a distributed lock. It is an implementation of the Consul Leader Election guide.
Semaphore
Semaphore is used to implement a distributed semaphore using the Consul KV primitives. It is an implementation of the Consul Semaphore guide.
Using with .NET Core and Mono
Both .NET 4.6.1+ and .NET Core 2.0+ are fully supported. Mono is supported on a best-effort basis. It should compile and run happily on Mono but this is not as heavily tested as Microsoft .NET stacks. If you have any issues using the Nuget package or compiling this code with .NET, .NET Core, or Mono, please file a Github issue with details of the problem.
Versioning
The version number indicates which version of Consul is supported in terms of API features. Since Consul has already a version that consists of three numbers (e.g. 1.6.1), the fourth number is necessary to indicate patch releases of Consul.NET.
Please note that NuGet normalizes version numbers, by omitting zero in the fourth part of the version number.
For example version 1.6.1.0
is going to be normalized to 1.6.1
. So to avoid problems, versions and tags with zero in the fourth part should be avoided and explicit three part version should be used instead.
Preview versions
Preview builds (aka 'nightly' builds) are distributed using https://feedz.io/ for now. To pull preview versions into your project, use the following NuGet.config
file:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="consuldotnet-preview" value="https://f.feedz.io/consuldotnet/preview/nuget/index.json" />
</packageSources>
</configuration>
Release process
- Before making a new release, make sure that the version in Directory.Build.props is up to date.
- Head over to the CHANGELOG file. Replace
## Unreleased
with the new version name and add an additional## Unreleased
for future changes. Open a PR to update the changelog. - Then, draft a new GitHub Release with a list of changes contained in the new version from the CHANGELOG.
- When the draft release is ready, publish it from the GitHub web UI. Be aware, clicking Publish will trigger GitHub to push a new tag (as specified in the new Release entry) which will instruct the CI to build and push a new stable release to NuGet.org.
- If everything went well, congrats, the new versions should be live on NuGet by now. As a final post-release step, bump the minor version in Directory.Build.props to the next unreleased version number, so that nightly build versioning can benefit.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Consul (>= 1.6.10.4)
- Microsoft.AspNetCore.Hosting.Server.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 3.1.10)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.10)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 3.1.10)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on NetPro.Consul.AspNetCore:
Package | Downloads |
---|---|
NetPro.ConsulClient
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.7.1-beta.3 | 585 | 4/8/2022 |
1.7.1-beta.2 | 117 | 4/8/2022 |
1.7.1-beta.1 | 200 | 3/21/2022 |