FluentNetting 0.0.5
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package FluentNetting --version 0.0.5
NuGet\Install-Package FluentNetting -Version 0.0.5
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="FluentNetting" Version="0.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FluentNetting --version 0.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FluentNetting, 0.0.5"
#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.
// Install FluentNetting as a Cake Addin #addin nuget:?package=FluentNetting&version=0.0.5 // Install FluentNetting as a Cake Tool #tool nuget:?package=FluentNetting&version=0.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FluentNetting - fluentd / fluent-bit forwarded server
feature
'FluentNetting' is fluent forwarding message received server that is based on Fluent forward protocol v1 specification.
This library is supported for both fluentd and fluent-bit.
supported message mode (format)
- Message Mode
- Forward Mode
- PackedForward Mode
- CompressedPackedForward Mode
supported configuration
- Security forwarding authorization,
HELO
,PING
andPONG
(not tls, not username/password, only self_hostname/shared_key). - Udp heartbeat.
how to use
(data flow)
client ---(forward)---> fluend or fluent-bit ---(forward)---> server used by FluentNetting
callback
public class ExampleCallback : IFnCallback
{
public void Receive(string tag, List<FnMessageEntry> entries)
{
Console.WriteLine($"tag:{tag}, entries:[{string.Join(", ", entries.Select(e => $"{{{e}}}"))}]");
}
}
server
var server = new FnServer(new ExampleCallback())
{
// default - not authrization, enable 'RequireAck', disable 'Keepalive'
Config = new FnConfig(),
// default - tcp timeout 65 sec, udp timeout 15 sec
SettingClient = new FnSettingClient(),
// default - listening on tcp://0.0.0.0:8710, udp://0.0.0.0:8710
SettingServer = new FnSettingServer()
};
server.Start();
server.WaitFor();
fluent configuration (fluentd or fluent-bit in a same host)
(fluentd)
<source>
@type forward
port 24224
</source>
<match **>
@type forward
send_timeout 60s
recover_wait 10s
heartbeat_type udp
heartbeat_interval 5s
phi_threshold 16
hard_timeout 60s
require_ack_response
<server>
host {{ your server address }}
port 8710
</server>
buffer_type file
buffer_path /fluentd/log/buffer
buffer_chunk_limit 1m
retry_limit 3
flush_interval 1m
</match>
(fluent-bit)
[SERVICE]
Flush 5
Daemon off
Log_Level info
storage.path /fluent-bit/log
[INPUT]
Name forward
Listen 0.0.0.0
Port 24224
storage.type filesystem
Buffer_Chunk_Size 1M
Buffer_Max_Size 6M
[OUTPUT]
Name forward
Match *
Host {{ your server address }}
Port 8710
Require_ack_response true
Send_options true
client - csharp used by Pigeon (highly recommend)
var config = new PigeonConfig("localhost", 24224);
var clientPigeon = new PigeonClient(config);
await clientPigeon.SendAsync(
"tag.example2",
new Dictionary<string, object> {["hello"] = "world2"}
);
client - csharp used by Serilog
var options = new FluentdSinkOptions(
"localhost", 24224, "tag.example1");
var log = new LoggerConfiguration().WriteTo.Fluentd(options).CreateLogger();
log.Information("hello {0}!", "world1");
client - csharp used by FluentdClient.Sharp
using (var client = new FluentdClient.Sharp.FluentdClient(
"localhost", 24224, new CustomMessagePackSerializer()))
{
await client.ConnectAsync();
await client.SendAsync("tag.example3",
new Dictionary<string, object> {["hello"] = "world3"});
}
In detail, confirm example.
motivated and referenced
- influent - java fluentd forward server.
- MessagePack-CSharp - csharp fastest message pack parser.
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- MessagePack (>= 2.5.140)
- OrangeCabinet (>= 0.0.9)
- PurpleSofa (>= 0.1.1)
- System.IO.Pipelines (>= 8.0.0)
-
net7.0
- MessagePack (>= 2.5.140)
- OrangeCabinet (>= 0.0.9)
- PurpleSofa (>= 0.1.1)
- System.IO.Pipelines (>= 8.0.0)
-
net8.0
- MessagePack (>= 2.5.140)
- OrangeCabinet (>= 0.0.9)
- PurpleSofa (>= 0.1.1)
- System.IO.Pipelines (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.