Audit.NET.RavenDB 27.5.2

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

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")));

ZZZ Projects - Sponsorship

Entity Framework Extensions and Dapper Plus are major sponsors and are proud to contribute to the development of Audit.NET

Combine the power of auditing with the speed of Bulk Operations to get the best of both worlds — audit and performance.

Entity Framework Extensions - Sponsor

Dapper Plus - Sponsor

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.  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. 
.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
27.5.2 150 8 days ago
27.5.1 79 12 days ago
27.5.0 258 a month ago
27.4.1 117 2 months ago
27.4.0 89 3 months ago
27.3.3 186 3 months ago
27.3.2 113 4 months ago
27.3.1 97 4 months ago
27.3.0 112 4 months ago
27.2.0 98 5 months ago
27.1.1 97 6 months ago
27.1.0 103 6 months ago
27.0.3 246 7 months ago
27.0.2 118 7 months ago
27.0.1 362 7 months ago
27.0.0 120 7 months ago
26.0.1 516 8 months ago
26.0.0 471 9 months ago
25.0.7 227 9 months ago
25.0.6 109 10 months ago
25.0.5 130 10 months ago
25.0.4 286 3/24/2024
25.0.3 177 3/13/2024
25.0.2 132 3/12/2024
25.0.1 126 2/28/2024
25.0.0 148 2/16/2024
24.0.1 138 2/12/2024
24.0.0 136 2/12/2024
23.0.0 283 12/14/2023
22.1.0 737 12/9/2023
22.0.2 986 12/1/2023
22.0.1 154 11/16/2023
22.0.0 116 11/14/2023
21.1.0 1,280 10/9/2023
21.0.4 192 9/15/2023
21.0.3 195 7/9/2023
21.0.2 164 7/6/2023
21.0.1 520 5/27/2023
21.0.0 409 4/15/2023
20.2.4 251 3/27/2023
20.2.3 259 3/17/2023
20.2.2 241 3/14/2023
20.2.1 850 3/11/2023
20.2.0 227 3/7/2023
20.1.6 274 2/23/2023
20.1.5 284 2/9/2023
20.1.4 509 1/28/2023
20.1.3 381 12/21/2022
20.1.2 327 12/14/2022
20.1.1 337 12/12/2022
20.1.0 358 12/4/2022
20.0.4 354 11/30/2022
20.0.3 683 10/28/2022
20.0.2 431 10/26/2022
20.0.1 473 10/21/2022
20.0.0 571 10/1/2022
19.4.1 571 9/10/2022
19.4.0 508 9/2/2022
19.3.0 507 8/23/2022
19.2.2 507 8/11/2022
19.2.1 518 8/6/2022
19.2.0 596 7/24/2022
19.1.4 1,062 5/23/2022
19.1.3 496 5/22/2022
19.1.2 512 5/18/2022
19.1.1 815 4/28/2022
19.1.0 1,033 4/10/2022
1.6.3 813 4/6/2022
1.6.2 2,480 3/30/2022
1.6.1 490 3/30/2022
1.6.0 492 3/30/2022
1.5.0 766 2/8/2022
1.4.1 755 2/8/2022
1.4.0 502 2/7/2022
1.3.2 531 2/1/2022
1.3.1 530 1/31/2022
1.3.0 503 1/31/2022
1.2.2 497 1/31/2022
1.2.1 483 1/31/2022
1.2.0 501 1/31/2022
1.1.0 501 1/31/2022
1.0.0 1,160 1/4/2021