NLog.Targets.KafkaAppender
1.0.5
.NET Core 1.0
This package targets .NET Core 1.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
.NET Framework 4.5
This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
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 NLog.Targets.KafkaAppender --version 1.0.5
NuGet\Install-Package NLog.Targets.KafkaAppender -Version 1.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="NLog.Targets.KafkaAppender" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NLog.Targets.KafkaAppender --version 1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: NLog.Targets.KafkaAppender, 1.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 NLog.Targets.KafkaAppender as a Cake Addin #addin nuget:?package=NLog.Targets.KafkaAppender&version=1.0.5 // Install NLog.Targets.KafkaAppender as a Cake Tool #tool nuget:?package=NLog.Targets.KafkaAppender&version=1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nlog-kafka-target
nlog appender for kafka which provides the custom topics pattern and partitions
Supported frameworks
.NET Framework 4.5, 4.6 & 4.7
ASP.NET 4.5+ (NLog.Web package)
ASP.NET Core (NLog.Web.AspNetCore package)
.NET Core (NLog.Extensions.Logging package)
.NET Standard 2.x+ - NLog 4.5
Getting Started
Step 1: Install NLog.Targets.KafkaAppender package from nuget.org
Install via Package-Manager Install-Package NLog.Targets.KafkaAppender
Install via .NET CLI dotnet add package NLog.Targets.KafkaAppender
Step 2: Configure nlog sections
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true">
<extensions>
<add assembly="NLog.Targets.KafkaAppender"/>
</extensions>
<targets>
<target xsi:type="KafkaAppender"
name="kafka"
topic="${callsite:className=true:fileName=false:includeSourcePath=false:methodName=true}"
layout="${longdate}|${level:uppercase=true}|${logger}|${message}"
brokers="localhost:9092"
debug="false"
async="false"
>
</target>
</targets>
<rules>
<logger name="*" minlevel="Info" writeTo="kafka" />
</rules>
</nlog>
Param Name | Variable Type | Requirement | Description | Default |
---|---|---|---|---|
name | :string |
yes* |
Target's name | |
topic | :layout |
yes* |
Topic pattern can be layout | ${callsite:className=true:fileName=false:includeSourcePath=false:methodName=true} |
layout | :layout |
no | Layout used to format log messages. | ${longdate}|${level:uppercase=true}|${logger}|${message} |
brokers | :string |
yes* |
Kafka brokers with comma-separated | |
debug | :boolean |
no | Debugging mode enabled | false |
async | :boolean |
no | Async or sync mode | false |
Check documentation about all Layout Renderers
Usage
using System;
namespace NLog.Targets.KafkaAppender.Test
{
class Program
{
static void Main(string[] args)
{
var logger = NLog.LogManager.GetCurrentClassLogger();
logger.Error("hello world");
//topic layout: ${callsite:className=true:fileName=false:includeSourcePath=false:methodName=true}
//message layout: ${longdate}|${level:uppercase=true}|${logger}|${message}
//topic output: NLog.Targets.KafkaAppender.Test.Program.Main
//message output: 2018-12-05 18:27:46.7382|ERROR|NLog.Targets.KafkaAppender.Test.Program|hello world
}
}
}
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 | netcoreapp1.0 is compatible. netcoreapp1.1 is compatible. netcoreapp2.0 is compatible. netcoreapp2.1 is compatible. netcoreapp2.2 is compatible. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 is compatible. net452 is compatible. net46 is compatible. net461 is compatible. net462 is compatible. net463 was computed. net47 is compatible. net471 is compatible. net472 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 1.0
- Confluent.Kafka (>= 1.1.0)
- Microsoft.NETCore.App (>= 1.0.5)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETCoreApp 1.1
- Confluent.Kafka (>= 1.1.0)
- Microsoft.NETCore.App (>= 1.1.2)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETCoreApp 2.0
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETCoreApp 2.1
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETCoreApp 2.2
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETFramework 4.5
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETFramework 4.5.1
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETFramework 4.5.2
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETFramework 4.6
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETFramework 4.6.1
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETFramework 4.6.2
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETFramework 4.7
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETFramework 4.7.1
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETFramework 4.7.2
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
-
.NETStandard 2.0
- Confluent.Kafka (>= 1.1.0)
- Newtonsoft.Json (>= 12.0.2)
- NLog (>= 4.6.6)
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 |
---|---|---|
2.1.7 | 33 | 11/16/2024 |
2.1.6 | 12,359 | 5/30/2024 |
2.1.5 | 6,474 | 3/26/2024 |
2.1.4 | 26,359 | 10/15/2023 |
2.1.3 | 5,222 | 8/16/2023 |
2.1.2 | 2,731 | 7/24/2023 |
2.1.1 | 6,775 | 7/9/2023 |
2.1.0 | 170 | 7/6/2023 |
2.0.0 | 79,256 | 5/16/2022 |
1.0.8 | 19,218 | 9/21/2020 |
1.0.7 | 1,691 | 7/21/2020 |
1.0.6 | 8,416 | 12/6/2019 |
1.0.5 | 34,959 | 8/2/2019 |
1.0.4 | 743 | 5/1/2019 |
1.0.3 | 2,513 | 12/7/2018 |
1.0.2 | 672 | 12/5/2018 |
1.0.1 | 659 | 12/5/2018 |