Audit.NET.Redis 25.0.4

dotnet add package Audit.NET.Redis --version 25.0.4
NuGet\Install-Package Audit.NET.Redis -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.Redis" 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.Redis --version 25.0.4
#r "nuget: Audit.NET.Redis, 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.Redis as a Cake Addin
#addin nuget:?package=Audit.NET.Redis&version=25.0.4

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

Audit.NET.Redis

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

Store the audit events in a Redis database as Strings, List, SortedSet, Hash, publish to a PubSub channel or add to a Redis Stream.

Install

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

PM> Install-Package Audit.NET.Redis

NuGet Status NuGet Count

Usage

Please see the Audit.NET Readme

Configuration

To set the Redis data provider globally, use the fluent configuration API, for example:

Audit.Core.Configuration.Setup()
    .UseRedis(redis => redis
        .ConnectionString(RedisCnnString)
        .AsString(str => str
            .Key(ev => $"{Guid.NewGuid()}")));

If you need to set different providers/configuration per scope, you can use the RedisDataProviderHelper to easily get a new Redis Data Provider via the fluent API, for example:

    var dp = new RedisDataProviderHelper(RedisCnnString)
        .AsString(str => str
            .Key(ev => $"{Guid.NewGuid()}"));

    using (AuditScope.Create(new AuditScopeOptions() { DataProvider = dp }))
    {
       // ...
    }

Common settings

  • ConnectionString indicates the redis connection string, based on StackExchange.Redis configuration.
  • ConfigurationOptions indicates the redis connection configuration options, when you need to provide custom connection options. Alternative to ConnectionString.
  • Serializer indicates a custom serialization method for the audit events. By default the events are serialized as JSON encoded as UTF-8.

Modes

This data provider allows to store the events in different ways.

Redis String

Store each audit event as a redis string.

Setup sample:

// Store audits as strings.
Audit.Core.Configuration.Setup()
    .UseRedis(redis => redis
        .ConnectionString("localhost:6379,allowAdmin=true")
        .AsString(str => str
            .Key(ev => $"{ev.EventType}:{Guid.NewGuid()}")));

Mandatory settings

  • Use the Key method to indicate the redis key where the event will be stored, this key can depend on the AuditEvent object.

Optional settings

  • TimeToLive specifies the Time To Live for the Redis Key. Default is no TTL.
  • Database specifies the database ID to use. Default is database 0.
  • AttachTask attaches an additional redis command to the execution.

Redis Stream

Adds each audit event to a Redis Stream.

Setup sample:

// Store audits as strings.
Audit.Core.Configuration.Setup()
    .UseRedis(redis => redis
        .ConnectionString("localhost")
        .AsStream(stream => stream
            .Key("MyAuditStream")
            .MaxLength(5000)
            .WithCustomField("Date", ev => DateTime.UtcNow.ToString())));

Mandatory settings

  • Use the Key method to indicate the stream redis key, this key can depend on the AuditEvent object.

Optional settings

  • Database specifies the database ID to use. Default is database 0.
  • AttachTask attaches an additional redis command to the execution.
  • MaxLength specifies the maximum quantity of events that the stream will store. Older elements will be deleted. Default is NULL for no-limit.
  • DefaultAuditEventFieldName specifies the default field name that will contain the AuditEvent JSON representation in the stream entry. Default is "AuditEvent".
  • WithCustomField allows specifying custom fields to be stored in the stream entry. By default, only the field named "AuditEvent" is stored, containing the JSON representation of the Audit Event.

Redis Hash

Store each audit event as a field in a redis hash.

Setup sample:

// Store audits in hashes per each EventType.
Audit.Core.Configuration.Setup()
    .UseRedis(redis => redis
        .ConnectionString(RedisCnnString)
        .AsHash(hash => hash
            .Key(ev => $"{ev.EventType}")
            .HashField(ev => $"{Guid.NewGuid()}")));

Mandatory settings:

  • Key to indicate the redis key where the hash will be stored, this key can depend on the AuditEvent object.
  • HashField to indicate the redis field inside the hash where the event will be stored.

Optional settings

  • TimeToLive specifies the Time To Live for the Redis Hash. Default is no TTL.
  • Database specifies the database ID to use. Default is database 0.
  • AttachTask attaches an additional redis command to the execution.

Redis List

Store each audit event as a member in a redis list.

Setup sample:

// Store audits in lists per each EventType, with a maximum of 1000 events per list.
Audit.Core.Configuration.Setup()
    .UseRedis(redis => redis
        .ConnectionString(RedisCnnString)
        .AsList(list => list
            .Key(ev => $"{ev.EventType}")
            .MaxLength(1000)));

Mandatory settings:

  • Key to indicate the redis key where the list will be stored, this key can depend on the AuditEvent object.

Optional settings:

  • MaxLength to indicate the maximum quantity of events that the list will store. Older elements will be deleted. Default is no-limit.
  • TimeToLive specifies the Time To Live for the Redis List. Default is no TTL.
  • Database specifies the database ID to use. Default is database 0.
  • AttachTask attaches an additional redis command to the execution.

Redis Sorted Set

Store each audit event as a member in a redis sorted set.

Setup sample:

// Store audits in sorted sets per each EventType, maintaining only the events from the last 30 days.
Audit.Core.Configuration.Setup()
    .UseRedis(redis => redis
        .ConnectionString(RedisCnnString)
        .AsSortedSet(sset => sset
            .Key(ev => $"{ev.EventType}")
            .Score(ev => ev.StartDate.Ticks)
            .MinScore(ev => DateTime.UtcNow.AddDays(-30).Ticks)));

Mandatory settings:

  • Key to indicate the redis key where the sorted set will be stored, this key can depend on the AuditEvent object.
  • Score to indicate the score as a double that the event will have, can depend on the AuditEvent object.

Optional settings:

  • MinScore specifies a function that returns the minimum score allowed for the sorted set. Audits with score less than the minimum will be deleted. This deletion takes place when a new event is stored.
  • MaxScore specifies a function that returns the maximum score allowed for the sorted set.
  • MaxRank specifies a function that returns the maximum rank allowed for the sorted set. Max>0: Maintain only the top N scored elements. Max<0: Maintain only the bottom N scored elements.
  • TimeToLive specifies the Time To Live for the Redis Sorted Set. Default is no TTL.
  • Database specifies the database ID to use. Default is database 0.
  • AttachTask attaches an additional redis command to the execution.

Redis PubSub

Sends the audit events to a redis PubSub channel.

Setup sample:

// Send audits to PubSub channels.
Audit.Core.Configuration.Setup()
    .UseRedis(redis => redis
        .ConnectionString(RedisCnnString)
        .AsPubSub(pub => pub
            .Channel(ev => $"audits:{ev.EventType}")));

Mandatory settings:

  • Channel to indicate the channel name to use for publishing the events.

Query events

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

var event = Configuration.DataProvider.GetEvent("eventId");
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.4 90 3/24/2024
25.0.3 99 3/13/2024
25.0.2 89 3/12/2024
25.0.1 99 2/28/2024
25.0.0 839 2/16/2024
24.0.1 101 2/12/2024
24.0.0 94 2/12/2024
23.0.0 1,045 12/14/2023
22.1.0 92 12/9/2023
22.0.2 119 12/1/2023
22.0.1 1,229 11/16/2023
22.0.0 203 11/14/2023
21.1.0 146 10/9/2023
21.0.4 2,004 9/15/2023
21.0.3 564 7/9/2023
21.0.2 136 7/6/2023
21.0.1 139 5/27/2023
21.0.0 205 4/15/2023
20.2.4 238 3/27/2023
20.2.3 237 3/17/2023
20.2.2 245 3/14/2023
20.2.1 244 3/11/2023
20.2.0 231 3/7/2023
20.1.6 266 2/23/2023
20.1.5 287 2/9/2023
20.1.4 4,357 1/28/2023
20.1.3 328 12/21/2022
20.1.2 317 12/14/2022
20.1.1 298 12/12/2022
20.1.0 338 12/4/2022
20.0.4 351 11/30/2022
20.0.3 2,536 10/28/2022
20.0.2 432 10/26/2022
20.0.1 471 10/21/2022
20.0.0 1,581 10/1/2022
19.4.1 1,168 9/10/2022
19.4.0 485 9/2/2022
19.3.0 469 8/23/2022
19.2.2 2,073 8/11/2022
19.2.1 493 8/6/2022
19.2.0 1,404 7/24/2022
19.1.4 3,368 5/23/2022
19.1.3 471 5/22/2022
19.1.2 470 5/18/2022
19.1.1 842 4/28/2022
19.1.0 581 4/10/2022
19.0.7 3,534 3/13/2022
19.0.6 551 3/7/2022
19.0.5 985 1/28/2022
19.0.4 539 1/23/2022
19.0.3 3,435 12/14/2021
19.0.2 386 12/11/2021
19.0.1 826 11/20/2021
19.0.0 415 11/11/2021
19.0.0-rc.net60.2 161 9/26/2021
19.0.0-rc.net60.1 207 9/16/2021
18.1.6 727 9/26/2021
18.1.5 504 9/7/2021
18.1.4 435 9/6/2021
18.1.3 472 8/19/2021
18.1.2 529 8/8/2021
18.1.1 477 8/5/2021
18.1.0 480 8/1/2021
18.0.1 511 7/30/2021
18.0.0 509 7/26/2021
17.0.8 515 7/7/2021
17.0.7 492 6/16/2021
17.0.6 477 6/5/2021
17.0.5 476 5/28/2021
17.0.4 462 5/4/2021
17.0.3 439 5/1/2021
17.0.2 474 4/22/2021
17.0.1 440 4/18/2021
17.0.0 502 3/26/2021
16.5.6 460 3/25/2021
16.5.5 447 3/23/2021
16.5.4 485 3/9/2021
16.5.3 434 2/26/2021
16.5.2 457 2/23/2021
16.5.1 476 2/21/2021
16.5.0 479 2/17/2021
16.4.5 466 2/15/2021
16.4.4 454 2/5/2021
16.4.3 461 1/27/2021
16.4.2 499 1/22/2021
16.4.1 514 1/21/2021
16.4.0 490 1/11/2021
16.3.3 544 1/8/2021
16.3.2 508 1/3/2021
16.3.1 534 12/31/2020
16.3.0 495 12/30/2020
16.2.1 468 12/27/2020
16.2.0 523 10/13/2020
16.1.5 525 10/4/2020
16.1.4 560 9/17/2020
16.1.3 662 9/13/2020
16.1.2 558 9/9/2020
16.1.1 582 9/3/2020
16.1.0 557 8/19/2020
16.0.3 610 8/15/2020
16.0.2 600 8/9/2020
16.0.1 619 8/8/2020
16.0.0 551 8/7/2020
15.3.0 647 7/23/2020
15.2.3 565 7/14/2020
15.2.2 589 5/19/2020
15.2.1 581 5/12/2020
15.2.0 625 5/9/2020
15.1.1 619 5/4/2020
15.1.0 630 4/13/2020
15.0.5 602 3/18/2020
15.0.4 627 2/28/2020
15.0.3 605 2/26/2020
15.0.2 678 1/20/2020
15.0.1 642 1/10/2020
15.0.0 651 12/17/2019
14.9.1 637 11/30/2019
14.9.0 629 11/29/2019
14.8.1 642 11/26/2019
14.8.0 689 11/20/2019
14.7.0 643 10/9/2019
14.6.6 630 10/8/2019
14.6.5 634 9/27/2019
14.6.4 635 9/21/2019
14.6.3 675 8/12/2019
14.6.2 695 8/3/2019
14.6.1 695 8/3/2019
14.6.0 663 7/26/2019
14.5.7 670 7/18/2019
14.5.6 702 7/10/2019
14.5.5 656 7/1/2019
14.5.4 669 6/17/2019
14.5.3 705 6/5/2019
14.5.2 710 5/30/2019
14.5.1 692 5/28/2019
14.5.0 744 5/24/2019
14.4.0 722 5/22/2019
14.3.4 678 5/14/2019
14.3.3 692 5/9/2019
14.3.2 715 4/30/2019
14.3.1 710 4/27/2019
14.3.0 771 4/24/2019
14.2.3 703 4/17/2019
14.2.2 702 4/10/2019
14.2.1 684 4/5/2019
14.2.0 709 3/16/2019
14.1.1 729 3/8/2019
14.1.0 790 2/11/2019
14.0.4 806 1/31/2019
14.0.3 831 1/22/2019
14.0.2 846 12/15/2018
14.0.1 836 11/29/2018
14.0.0 880 11/19/2018
13.3.0 851 11/16/2018
13.2.2 852 11/15/2018
13.2.1 894 11/13/2018
13.2.0 879 10/31/2018
13.1.5 867 10/31/2018
13.1.4 871 10/25/2018
13.1.3 851 10/18/2018
13.1.2 958 9/12/2018
13.1.1 910 9/11/2018
13.1.0 905 9/11/2018
13.0.0 1,047 8/29/2018
12.3.6 979 8/29/2018
12.3.5 977 8/22/2018
12.3.4 968 8/21/2018
12.3.3 25,693 8/21/2018
12.3.2 977 8/20/2018
12.3.1 1,001 8/20/2018
12.3.0 993 8/20/2018
12.2.2 1,031 8/15/2018
12.2.1 1,023 8/9/2018
12.2.0 993 8/8/2018
12.1.11 985 7/30/2018
12.1.10 1,016 7/20/2018
12.1.9 1,102 7/10/2018
12.1.8 997 7/2/2018
12.1.7 1,091 6/7/2018
12.1.6 1,008 6/4/2018
12.1.5 1,073 6/2/2018
12.1.4 982 5/25/2018
12.1.3 1,199 5/16/2018
12.1.2 1,029 5/15/2018
12.1.1 1,151 5/14/2018
12.1.0 1,114 5/9/2018
12.0.7 1,181 5/5/2018
12.0.6 1,198 5/4/2018
12.0.5 1,134 5/3/2018
12.0.4 1,187 4/30/2018
12.0.3 1,201 4/30/2018
12.0.2 1,126 4/27/2018
12.0.1 1,026 4/25/2018
12.0.0 1,040 4/22/2018
11.2.0 1,074 4/11/2018
11.1.0 1,179 4/8/2018
11.0.8 1,153 3/26/2018
11.0.7 1,126 3/20/2018
11.0.6 1,103 3/7/2018
11.0.5 1,056 2/22/2018
11.0.4 1,138 2/14/2018
11.0.3 1,111 2/12/2018
11.0.2 1,119 2/9/2018
11.0.1 1,048 1/29/2018
11.0.0 1,111 1/15/2018
10.0.3 1,474 12/29/2017
10.0.2 1,122 12/26/2017
10.0.1 1,157 12/18/2017
10.0.0 1,117 12/18/2017
9.3.0 1,104 12/17/2017
9.2.0 1,077 12/17/2017
9.1.3 1,106 12/5/2017
9.1.2 1,085 11/27/2017
9.1.1 1,076 11/21/2017
9.1.0 1,077 11/21/2017
9.0.1 1,113 11/11/2017
9.0.0 1,133 11/10/2017
8.7.0 1,097 11/9/2017
8.6.0 1,078 11/9/2017
8.5.0 1,099 10/3/2017
8.4.0 1,101 10/3/2017
8.3.1 1,372 9/8/2017
8.3.0 1,117 9/8/2017
8.2.0 1,078 9/4/2017
8.1.0 1,123 8/22/2017
8.0.0 1,193 8/19/2017
7.1.3 1,112 8/14/2017
7.1.2 1,149 8/2/2017