Audit.NET.RavenDB 25.0.4

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

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

Audit.NET.RavenDB

Raven DB provider for Audit.NET library (An extensible framework to audit executing operations in .NET).

Store the audit events in Raven DB collections using the RavenDB.Client library.

Install

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

PM> Install-Package Audit.NET.RavenDB

NuGet Status NuGet Count

Usage

Please see the Audit.NET Readme

Configuration

Set the static Audit.Core.Configuration.DataProvider property to set the Raven DB data provider, or call the UseRavenDB 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 RavenDbDataProvider(config => config
    .WithSettings("http://127.0.0.1:8080", "AuditEvents"));

Or using the constructor overload that accepts a fluent API:

Audit.Core.Configuration.DataProvider = new RavenDbDataProvider(config => config
    .WithSettings(settings => settings
        .Urls("http://127.0.0.1:8080")
        .DatabaseDefault("AuditEvents")));

Or by using the global setup extension UseRavenDB() that also accepts the fluent API:

Audit.Core.Configuration.Setup()
    .JsonNewtonsoftAdapter()
    .UseRavenDB(config => config
        .WithSettings(settings => settings
            .Urls("http://127.0.0.1:8080")
            .Database(ev => "Audit_" + ev.EventType)
            .Certificate(cert)));

You can provide the database name setting as function of the Audit Event.

You can also provide an instance of a IDocumentStore already configured. For example:

Audit.Core.Configuration.Setup()
    .UseRavenDB(config => config
        .UseDocumentStore(new DocumentStore()
        {
            Urls = new[] {"http://127.0.0.1:8080"},
            Database = "AuditEvents",
            Conventions = new DocumentConventions()
            {
                Serialization = new NewtonsoftJsonSerializationConventions()
                {
                    JsonContractResolver = new AuditContractResolver(),
                    CustomizeJsonSerializer = ser =>
                    {
                        ser.DefaultValueHandling = DefaultValueHandling.Ignore;
                    }
                }
            }
        }));

IMPORTANT NOTES:

  • The Raven DB C# Client depends on Newtonsoft.Json for serialization and deserialization, so if you are targeting .NET 5.0 or higher, it is highly recommended to set up the global Newtonsoft JsonAdapter by adding the .JsonNewtonsoftAdapter() call on your startup. For example:

    Audit.Core.Configuration.Setup()
        .JsonNewtonsoftAdapter()
        .UseRavenDB(...);
    
  • This data provider uses a specialized Contract Resolver (AuditContractResolver) that honors the decorations from System.Text.Json but still using Newtonsfot.Json as required by the Raven DB client. This IContractResolver is added by default to the client conventions when using .WithSettings(...) fluent API.

Provider Settings

  • Urls: The RavenDB server URLs for the initial connection.
  • DatabaseDefault: The name of the default database to use.
  • Certificate: The certificate for secure connection.
  • DatabaseFunc: A function of the AuditEvent that returns the name of the database to store the audit event.

Provider Properties

  • DocumentStore: Gets ot sets the instance of the document store being used.

Fluent API Methods

The provider options can be set with a fluent API described by the following methods:

Connection level
  • WithSettings(): Use the given RavenDB settings.
  • UseDocumentStore(): Alternative to use the given RavenDB document store instance (IDocumentStore).

Query events

This provider implements GetEvent and GetEventAsync methods to obtain an audit event by id:

var event = ravenDataProvider.GetEvent("AuditEvents/3201-A");

Constraints

This provider has the following constraints:

  • The table to store the audit events must exists on RavenDB.

To create a database from a Raven DB Data Provider instance you can use the DocumentStore property, for example:

ravenProvider.DocumentStore.Maintenance.Server.Send(new CreateDatabaseOperation(new DatabaseRecord("AuditEvents")));
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 was computed.  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.4 113 3/24/2024
25.0.3 127 3/13/2024
25.0.2 86 3/12/2024
25.0.1 71 2/28/2024
25.0.0 85 2/16/2024
24.0.1 99 2/12/2024
24.0.0 76 2/12/2024
23.0.0 229 12/14/2023
22.1.0 93 12/9/2023
22.0.2 330 12/1/2023
22.0.1 116 11/16/2023
22.0.0 82 11/14/2023
21.1.0 768 10/9/2023
21.0.4 158 9/15/2023
21.0.3 153 7/9/2023
21.0.2 130 7/6/2023
21.0.1 354 5/27/2023
21.0.0 378 4/15/2023
20.2.4 209 3/27/2023
20.2.3 214 3/17/2023
20.2.2 200 3/14/2023
20.2.1 804 3/11/2023
20.2.0 197 3/7/2023
20.1.6 229 2/23/2023
20.1.5 257 2/9/2023
20.1.4 466 1/28/2023
20.1.3 330 12/21/2022
20.1.2 288 12/14/2022
20.1.1 287 12/12/2022
20.1.0 312 12/4/2022
20.0.4 308 11/30/2022
20.0.3 632 10/28/2022
20.0.2 389 10/26/2022
20.0.1 427 10/21/2022
20.0.0 528 10/1/2022
19.4.1 523 9/10/2022
19.4.0 467 9/2/2022
19.3.0 455 8/23/2022
19.2.2 464 8/11/2022
19.2.1 468 8/6/2022
19.2.0 548 7/24/2022
19.1.4 1,021 5/23/2022
19.1.3 448 5/22/2022
19.1.2 464 5/18/2022
19.1.1 769 4/28/2022
19.1.0 1,000 4/10/2022
1.6.3 763 4/6/2022
1.6.2 2,428 3/30/2022
1.6.1 442 3/30/2022
1.6.0 443 3/30/2022
1.5.0 728 2/8/2022
1.4.1 717 2/8/2022
1.4.0 453 2/7/2022
1.3.2 472 2/1/2022
1.3.1 477 1/31/2022
1.3.0 449 1/31/2022
1.2.2 444 1/31/2022
1.2.1 447 1/31/2022
1.2.0 446 1/31/2022
1.1.0 447 1/31/2022
1.0.0 1,062 1/4/2021