SerfWrapper 1.0.0

dotnet add package SerfWrapper --version 1.0.0
                    
NuGet\Install-Package SerfWrapper -Version 1.0.0
                    
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="SerfWrapper" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SerfWrapper" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="SerfWrapper" />
                    
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 SerfWrapper --version 1.0.0
                    
#r "nuget: SerfWrapper, 1.0.0"
                    
#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.
#addin nuget:?package=SerfWrapper&version=1.0.0
                    
Install SerfWrapper as a Cake Addin
#tool nuget:?package=SerfWrapper&version=1.0.0
                    
Install SerfWrapper as a Cake Tool

SerfWrapper NuGet Package

Overview

SerfWrapper is a .NET wrapper for HashiCorp Serf, providing cluster membership, failure detection, and orchestration functionality. This NuGet package allows you to easily integrate Serf into your .NET applications.

Installation

Install the SerfWrapper package from NuGet:

dotnet add package SerfWrapper

Or via the NuGet Package Manager:

Install-Package SerfWrapper

Basic Usage

using System;
using System.Threading.Tasks;
using SerfWrapper;

// Create a log handler
LogHandler logHandler = (message, level) => 
    Console.WriteLine($"[{level}] {message}");

// Register for log events
SerfAgent.OnLog += logHandler;

// Register for user events
SerfAgent.OnUserEvent += (name, payload, coalesce) => 
    Console.WriteLine($"Received user event: {name}, payload: {payload}, coalesce: {coalesce}");

// Define encryption key and RPC token
string encryptionKey = "your-encryption-key";
string rpcToken = "your-rpc-token";

// Start the Serf agent
int result = SerfAgent.StartSerfAgent(
    bindAddr: "127.0.0.1",
    bindPort: 7946,
    nodeName: "my-node",
    encryptionKey: encryptionKey,
    rpcToken: rpcToken);

if (result == 0)
{
    Console.WriteLine("Serf agent started successfully");
    
    // Send a user event
    SerfAgent.SendUserEvent("test-event", "Hello from SerfWrapper!", 0); // 0 for false, 1 for true
    
    // Get the cluster members
    var members = SerfAgent.GetMembers();
    foreach (var member in members)
    {
        Console.WriteLine($"{member.Name} at {member.Address}, Status: {member.Status}");
    }
    
    // Join another node to the cluster
    SerfAgent.JoinCluster("192.168.1.100", 7946);
    
    // Stop the Serf agent when done
    SerfAgent.StopSerfAgent();
}

Features

  • Start and manage Serf agents
  • Join and leave Serf clusters
  • Send and receive user events
  • Query cluster members
  • Handle logs and events
  • Secure communication with encryption and authentication

Requirements

  • .NET 8.0 or later
  • Supported platforms: Linux, macOS
    • Native libraries for both Linux (x64) and macOS (x64) are included in the package
    • Windows support may be added in future releases

Security Considerations

  • The Serf cluster communication is encrypted using the provided encryption key
  • RPC communication can be authenticated using an RPC token
  • Always use secure, randomly generated keys for production use

License

This package is licensed under the MIT License.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Product Compatible and additional computed target framework versions.
.NET 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 202 3/4/2025