Audit.NET.Kafka 25.0.6

dotnet add package Audit.NET.Kafka --version 25.0.6
NuGet\Install-Package Audit.NET.Kafka -Version 25.0.6
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="Audit.NET.Kafka" Version="25.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Audit.NET.Kafka --version 25.0.6
#r "nuget: Audit.NET.Kafka, 25.0.6"
#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 Audit.NET.Kafka as a Cake Addin
#addin nuget:?package=Audit.NET.Kafka&version=25.0.6

// Install Audit.NET.Kafka as a Cake Tool
#tool nuget:?package=Audit.NET.Kafka&version=25.0.6

Audit.NET.Kafka

Apache Kafka Server provider for Audit.NET library (An extensible framework to audit executing operations in .NET).

Send the audit events to an Apache Kafka topic.

Install

NuGet Package To install the package run the following command on the Package Manager Console:

PM> Install-Package Audit.NET.Kafka

NuGet Status NuGet Count

Usage

Please see the Audit.NET Readme

Configuration

Set the static Audit.Core.Configuration.DataProvider property to set the Kafka data provider, or call the UseKafka method on the fluent configuration. This should be done before any AuditScope creation, i.e. during application startup.

For example:

Audit.Core.Configuration.DataProvider = new KafkaDataProvider(producerConfig)
{
    TopicSelector = _ => "audit-topic"
};

Or by using the fluent configuration API:

Audit.Core.Configuration.Setup()
    .UseKafka(_ => _
        .ProducerConfig(producerConfig)
        .Topic("audit-topic"));

If you want to use keyed messages you have to use the generic KafkaDataProvider<TKey> and provide a way to obtain the key for each audit event:

Audit.Core.Configuration.Setup()
    .UseKafka<string>(_ => _
        .ProducerConfig(producerConfig)
        .Topic("audit-topic")
        .KeySelector(ev => ev.EventType));

Provider Options

  • ProducerConfig: Instance of ProducerConfig with the producer configuration properties
  • Topic: The topic name to send the messages. Default is "audit-topic".
  • TopicSelector: A function of the audit event that returns the topic name to use.
  • PartitionSelector: (optional) A function of the audit event that returns the partition index to use.
  • KeySelector: When using keyed messages, a function of the audit event that returns the key to use.
  • KeySerializer: When using keyed messages to set a custom serializer for the key.
  • AuditEventSerializer: Custom AuditEvent serializer. By default the audit event is JSON serialized + UTF8 encoded.
  • ResultHandler: An action to be called for each kafka response.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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 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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
25.0.6 47 6/24/2024
25.0.5 73 6/18/2024
25.0.4 156 3/24/2024
25.0.3 115 3/13/2024
25.0.2 101 3/12/2024
25.0.1 102 2/28/2024
25.0.0 101 2/16/2024
24.0.1 124 2/12/2024
24.0.0 88 2/12/2024
23.0.0 1,080 12/14/2023
22.1.0 131 12/9/2023
22.0.2 122 12/1/2023
22.0.1 134 11/16/2023
22.0.0 97 11/14/2023
21.1.0 171 10/9/2023
21.0.4 166 9/15/2023
21.0.3 258 7/9/2023
21.0.2 167 7/6/2023
21.0.1 172 5/27/2023
21.0.0 332 4/15/2023
20.2.4 243 3/27/2023
20.2.3 224 3/17/2023
20.2.2 221 3/14/2023
20.2.1 239 3/11/2023
20.2.0 239 3/7/2023
20.1.6 272 2/23/2023
20.1.5 269 2/9/2023
20.1.4 289 1/28/2023
20.1.3 280 12/21/2022
20.1.2 3,808 12/14/2022
20.1.1 304 12/12/2022
20.1.0 355 12/4/2022
20.0.4 336 11/30/2022
20.0.3 655 10/28/2022
20.0.2 410 10/26/2022
20.0.1 432 10/21/2022
20.0.0 2,150 10/1/2022
19.4.1 619 9/10/2022
19.4.0 35,089 9/2/2022
19.3.0 451 8/23/2022
19.2.2 473 8/11/2022
19.2.1 483 8/6/2022
19.2.0 622 7/24/2022
19.1.4 1,132 5/23/2022
19.1.3 481 5/22/2022
19.1.2 500 5/18/2022
19.1.1 682 4/28/2022
19.1.0 566 4/10/2022
19.0.7 623 3/13/2022
19.0.6 539 3/7/2022
19.0.5 1,838 1/28/2022
19.0.4 528 1/23/2022
19.0.3 1,029 12/14/2021
19.0.2 374 12/11/2021
19.0.1 1,387 11/20/2021
19.0.0 434 11/11/2021
19.0.0-rc.net60.2 154 9/26/2021
19.0.0-rc.net60.1 201 9/16/2021
18.1.6 540 9/26/2021
18.1.5 391 9/7/2021
18.1.4 385 9/6/2021
18.1.3 4,024 8/19/2021
18.1.2 455 8/8/2021
18.1.1 423 8/5/2021
18.1.0 460 8/1/2021
18.0.1 426 7/30/2021
18.0.0 434 7/26/2021
17.0.8 449 7/7/2021
17.0.7 436 6/16/2021
17.0.6 2,828 6/5/2021
17.0.5 426 5/28/2021
17.0.4 454 5/4/2021
17.0.3 438 5/1/2021
17.0.2 414 4/22/2021
17.0.1 398 4/18/2021
17.0.0 3,780 3/26/2021
16.5.6 446 3/25/2021
16.5.5 425 3/23/2021
16.5.4 418 3/9/2021
16.5.3 413 2/26/2021
16.5.2 460 2/23/2021
16.5.1 423 2/21/2021
16.5.0 408 2/17/2021
16.4.5 417 2/15/2021
16.4.4 420 2/5/2021
16.4.3 476 1/27/2021
16.4.2 403 1/22/2021
16.4.1 447 1/21/2021
16.4.0 428 1/11/2021
16.3.3 439 1/8/2021
16.3.2 470 1/3/2021
16.3.1 449 12/31/2020
16.3.0 406 12/30/2020
16.2.1 2,701 12/27/2020
16.2.0 536 10/13/2020
16.1.5 596 10/4/2020
16.1.4 510 9/17/2020
16.1.3 602 9/13/2020
16.1.2 495 9/9/2020