- Consul API: v0.5.2
- .NET version: >= 4.5
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.
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 -config-file test_config.json
This creates a 1-server cluster that writes data to .\consul-data
and
listens on localhost:8500
.
Once Consul is running (you'll see something like consul: cluster leadership acquired
) in your command prompt, then do the following
steps in your project.
Add a reference to Consul and add a using statement:
using Consul;
Write a function to talk to the KV store:
public static string HelloConsul()
{
var client = new Client();
var putPair = new KVPair("hello")
{
Value = Encoding.UTF8.GetBytes("Hello Consul")
};
var putAttempt = client.KV.Put(putPair);
if (putAttempt.Response)
{
var getPair = client.KV.Get("hello");
return Encoding.UTF8.GetString(getPair.Response.Value, 0, getPair.Response.Value.Length);
}
return "";
}
And call it:
Console.WriteLine(HelloConsul());
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.
All operations are done using a Client
object. First, instantiate a
Consul.Client
object, which connects to localhost:8500
- the default
Consul HTTP API port. Once you've got a Client
object, various
functionality is exposed as properties under the Client
.
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
The ACL endpoints are used to create, update, destroy, and query ACL tokens.
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.
The Catalog is the endpoint used to register and deregister nodes, services, and checks. It also provides query endpoints.
The Event endpoints are used to fire new events and to query the available events.
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.
The KV endpoint is used to access Consul's simple key/value store, useful for storing service configuration or other metadata.
The Session endpoints are used to create, destroy, and query sessions.
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.
Functionality based on the Consul guides using the available primitives has been implemented as well, just like the Go API.
Lock is used to implement client-side leader election for a distributed lock. It is an implementation of the Consul Leader Election guide.
Semaphore is used to implement a distributed semaphore using the Consul KV primitives. It is an implementaiton of the Consul Semaphore guide.