Audit.NET.DynamoDB
25.0.4
See the version list below for details.
dotnet add package Audit.NET.DynamoDB --version 25.0.4
NuGet\Install-Package Audit.NET.DynamoDB -Version 25.0.4
<PackageReference Include="Audit.NET.DynamoDB" Version="25.0.4" />
paket add Audit.NET.DynamoDB --version 25.0.4
#r "nuget: Audit.NET.DynamoDB, 25.0.4"
// Install Audit.NET.DynamoDB as a Cake Addin #addin nuget:?package=Audit.NET.DynamoDB&version=25.0.4 // Install Audit.NET.DynamoDB as a Cake Tool #tool nuget:?package=Audit.NET.DynamoDB&version=25.0.4
Audit.NET.DynamoDB
Amazon Dynamo DB provider for Audit.NET library (An extensible framework to audit executing operations in .NET).
Store the audit events in Dynamo DB tables using the AWSSDK.DynamoDBv2 library.
Install
NuGet Package To install the package run the following command on the Package Manager Console:
PM> Install-Package Audit.NET.DynamoDB
Usage
Please see the Audit.NET Readme
Configuration
Set the static Audit.Core.Configuration.DataProvider
property to set the Dynamo DB data provider, or call the UseDynamoDB
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 DynamoDataProvider()
{
Client = new Lazy<IAmazonDynamoDB>(() => new AmazonDynamoDBClient(new AmazonDynamoDBConfig()
{
ServiceURL = "http://localhost:8000"
})),
TableNameBuilder = ev => "MyTable"
};
Or even shorter using the constructor overload that accepts a fluent API:
Audit.Core.Configuration.DataProvider = new DynamoDataProvider(config => config
.UseUrl("http://localhost:8000")
.Table("MyTable"));
Or by using the global setup extension UseDynamoDB()
:
Audit.Core.Configuration.Setup()
.UseDynamoDB(config => config
.UseUrl("http://localhost:8000")
.Table(ev => ev.EventType));
You can provide the table name setting as a string or as a function of the Audit Event.
Provider Options
- Client: The DynamoDB client creator
AmazonDynamoDBClient
. - TableNameBuilder: A function of the audit event that returns the Table Name to use.
- CustomAttributes: A dictionary with additional fields to be included in the document and as custom fields on the audit event.
Fluent API Methods
The provider options can be set with a fluent API described by the following methods:
Connection level
- WithClient(): Use the given DynamoDB client instance (
AmazonDynamoDBClient
). - UseConfig(): Alternative to
WithClient()
, to use a DynamoDB client with the given settings (AmazonDynamoDBConfig
). - UseUrl(): Alternative to use a DynamoDB client only specifying the service URL.
Table level
- Table(): To specify the table name (as a string or a function of the audit event).
Attributes level
- SetAttribute(): To specify additional top-level attributes on the document before saving.
Query events
This provider implements GetEvent
and GetEventAsync
methods to obtain an audit event by id:
var event = dynamoDataProvider.GetEvent((Primitive)1234);
The
eventId
parameter on the genericGetEvent(object eventId)
must be of typePrimitive
,DynamoDBEntry
or an array of any of these two types. The first (or only) element must be the Hash key, and the second element should be the range key (or NULL if not using a range).
There are more convenient overloads of the GetEvent
/GetEventAsync
methods that accepts the Primitives without needing to cast the parameters:
// Get event with the given HASH and RANGE
var event = dynamoDataProvider.GetEvent("A001-005283", 2018);
// Get event with the given HASH
var event = dynamoDataProvider.GetEvent("A001-005283");
Constraints
This provider has the following constraints:
- The table to store the audit events must exists on DynamoDB.
- Its indexes must consist of top-level properties of the audit event.
(Note you can add properties to the AuditEvent as Custom Fields with the
SetAttribute()
method on the provider configuration)
The following is an example of a table creation using the AWSSDK.DynamoDBv2 library:
var config = new AmazonDynamoDBConfig() { ServiceURL = "http://localhost:8000" };
var client = new AmazonDynamoDBClient(config);
await client.CreateTableAsync(new CreateTableRequest()
{
TableName = "AuditEvents",
KeySchema = new List<KeySchemaElement>()
{
new KeySchemaElement("EventId", KeyType.HASH),
new KeySchemaElement("EventType", KeyType.RANGE)
},
AttributeDefinitions = new List<AttributeDefinition>()
{
new AttributeDefinition("EventId", ScalarAttributeType.S),
new AttributeDefinition("EventType", ScalarAttributeType.S)
},
ProvisionedThroughput = new ProvisionedThroughput(1, 1)
});
In this case, the primary key is defined as a Hash and a Range key, with EventId
being the hash, and EventType
being the range.
Both must be top-level properties of the Audit Event,
but since the EventId
is not a built-in property, you can configure it as a Custom Field:
Audit.Core.Configuration.Setup()
.UseDynamoDB(config => config
.UseUrl(url)
.Table("AuditEvents")
.SetAttribute("EventId", ev => Guid.NewGuid()));
Or you can use a global Custom Action instead with the same outcome:
Audit.Core.Configuration.AddCustomAction(ActionType.OnScopeCreated, scope =>
{
scope.SetCustomField("EventId", Guid.NewGuid());
});
Product | Versions 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. |
-
.NETFramework 4.6.2
- Audit.NET (>= 25.0.4)
- AWSSDK.DynamoDBv2 (>= 3.7.300.17)
-
.NETStandard 2.0
- Audit.NET (>= 25.0.4)
- AWSSDK.DynamoDBv2 (>= 3.7.300.17)
-
net6.0
- Audit.NET (>= 25.0.4)
- AWSSDK.DynamoDBv2 (>= 3.7.300.17)
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.1.1 | 106 | 10/28/2024 |
27.1.0 | 280 | 10/24/2024 |
27.0.3 | 1,464 | 9/25/2024 |
27.0.2 | 132 | 9/19/2024 |
27.0.1 | 1,178 | 9/4/2024 |
27.0.0 | 95 | 9/3/2024 |
26.0.1 | 2,485 | 8/22/2024 |
26.0.0 | 683 | 7/19/2024 |
25.0.7 | 199 | 7/4/2024 |
25.0.6 | 167 | 6/24/2024 |
25.0.5 | 833 | 6/18/2024 |
25.0.4 | 5,989 | 3/24/2024 |
25.0.3 | 161 | 3/13/2024 |
25.0.2 | 110 | 3/12/2024 |
25.0.1 | 224 | 2/28/2024 |
25.0.0 | 138 | 2/16/2024 |
24.0.1 | 135 | 2/12/2024 |
24.0.0 | 106 | 2/12/2024 |
23.0.0 | 588 | 12/14/2023 |
22.1.0 | 213 | 12/9/2023 |
22.0.2 | 314 | 12/1/2023 |
22.0.1 | 225 | 11/16/2023 |
22.0.0 | 172 | 11/14/2023 |
21.1.0 | 441 | 10/9/2023 |
21.0.4 | 271 | 9/15/2023 |
21.0.3 | 121,672 | 7/9/2023 |
21.0.2 | 210 | 7/6/2023 |
21.0.1 | 2,575 | 5/27/2023 |
21.0.0 | 30,063 | 4/15/2023 |
20.2.4 | 2,604 | 3/27/2023 |
20.2.3 | 338 | 3/17/2023 |
20.2.2 | 346 | 3/14/2023 |
20.2.1 | 354 | 3/11/2023 |
20.2.0 | 332 | 3/7/2023 |
20.1.6 | 3,365 | 2/23/2023 |
20.1.5 | 706 | 2/9/2023 |
20.1.4 | 386 | 1/28/2023 |
20.1.3 | 35,110 | 12/21/2022 |
20.1.2 | 355 | 12/14/2022 |
20.1.1 | 364 | 12/12/2022 |
20.1.0 | 392 | 12/4/2022 |
20.0.4 | 834 | 11/30/2022 |
20.0.3 | 800 | 10/28/2022 |
20.0.2 | 481 | 10/26/2022 |
20.0.1 | 504 | 10/21/2022 |
20.0.0 | 1,026 | 10/1/2022 |
19.4.1 | 3,587 | 9/10/2022 |
19.4.0 | 523 | 9/2/2022 |
19.3.0 | 503 | 8/23/2022 |
19.2.2 | 1,768 | 8/11/2022 |
19.2.1 | 540 | 8/6/2022 |
19.2.0 | 711 | 7/24/2022 |
19.1.4 | 14,418 | 5/23/2022 |
19.1.3 | 534 | 5/22/2022 |
19.1.2 | 561 | 5/18/2022 |
19.1.1 | 599 | 4/28/2022 |
19.1.0 | 540 | 4/10/2022 |
19.0.7 | 582 | 3/13/2022 |
19.0.6 | 597 | 3/7/2022 |
19.0.5 | 18,557 | 1/28/2022 |
19.0.4 | 563 | 1/23/2022 |
19.0.3 | 665 | 12/14/2021 |
19.0.2 | 424 | 12/11/2021 |
19.0.1 | 1,164 | 11/20/2021 |
19.0.0 | 3,137 | 11/11/2021 |
19.0.0-rc.net60.2 | 166 | 9/26/2021 |
19.0.0-rc.net60.1 | 215 | 9/16/2021 |
18.1.6 | 1,668 | 9/26/2021 |
18.1.5 | 565 | 9/7/2021 |
18.1.4 | 461 | 9/6/2021 |
18.1.3 | 512 | 8/19/2021 |
18.1.2 | 555 | 8/8/2021 |
18.1.1 | 522 | 8/5/2021 |
18.1.0 | 592 | 8/1/2021 |
18.0.1 | 536 | 7/30/2021 |
18.0.0 | 647 | 7/26/2021 |
17.0.8 | 4,690 | 7/7/2021 |
17.0.7 | 834 | 6/16/2021 |
17.0.6 | 521 | 6/5/2021 |
17.0.5 | 1,869 | 5/28/2021 |
17.0.4 | 667 | 5/4/2021 |
17.0.3 | 539 | 5/1/2021 |
17.0.2 | 512 | 4/22/2021 |
17.0.1 | 502 | 4/18/2021 |
17.0.0 | 547 | 3/26/2021 |
16.5.6 | 520 | 3/25/2021 |
16.5.5 | 485 | 3/23/2021 |
16.5.4 | 614 | 3/9/2021 |
16.5.3 | 1,160 | 2/26/2021 |
16.5.2 | 522 | 2/23/2021 |
16.5.1 | 543 | 2/21/2021 |
16.5.0 | 514 | 2/17/2021 |
16.4.5 | 519 | 2/15/2021 |
16.4.4 | 536 | 2/5/2021 |
16.4.3 | 522 | 1/27/2021 |
16.4.2 | 532 | 1/22/2021 |
16.4.1 | 604 | 1/21/2021 |
16.4.0 | 528 | 1/11/2021 |
16.3.3 | 579 | 1/8/2021 |
16.3.2 | 538 | 1/3/2021 |
16.3.1 | 594 | 12/31/2020 |
16.3.0 | 500 | 12/30/2020 |
16.2.1 | 530 | 12/27/2020 |
16.2.0 | 1,121 | 10/13/2020 |
16.1.5 | 17,169 | 10/4/2020 |
16.1.4 | 655 | 9/17/2020 |
16.1.3 | 733 | 9/13/2020 |
16.1.2 | 635 | 9/9/2020 |
16.1.1 | 663 | 9/3/2020 |
16.1.0 | 685 | 8/19/2020 |
16.0.3 | 748 | 8/15/2020 |
16.0.2 | 725 | 8/9/2020 |
16.0.1 | 727 | 8/8/2020 |
16.0.0 | 627 | 8/7/2020 |
15.3.0 | 748 | 7/23/2020 |
15.2.3 | 796 | 7/14/2020 |
15.2.2 | 1,555 | 5/19/2020 |
15.2.1 | 691 | 5/12/2020 |
15.2.0 | 726 | 5/9/2020 |
15.1.1 | 710 | 5/4/2020 |
15.1.0 | 742 | 4/13/2020 |
15.0.5 | 829 | 3/18/2020 |
15.0.4 | 724 | 2/28/2020 |
15.0.3 | 708 | 2/26/2020 |
15.0.2 | 802 | 1/20/2020 |
15.0.1 | 759 | 1/10/2020 |
15.0.0 | 762 | 12/17/2019 |
14.9.1 | 7,766 | 11/30/2019 |
14.9.0 | 698 | 11/29/2019 |
14.8.1 | 743 | 11/26/2019 |
14.8.0 | 698 | 11/20/2019 |
14.7.0 | 23,350 | 10/9/2019 |
14.6.6 | 742 | 10/8/2019 |
14.6.5 | 760 | 9/27/2019 |
14.6.4 | 738 | 9/21/2019 |
14.6.3 | 792 | 8/12/2019 |
14.6.2 | 776 | 8/3/2019 |
14.6.1 | 796 | 8/3/2019 |
14.6.0 | 748 | 7/26/2019 |
14.5.7 | 812 | 7/18/2019 |
14.5.6 | 791 | 7/10/2019 |
14.5.5 | 776 | 7/1/2019 |
14.5.4 | 796 | 6/17/2019 |
14.5.3 | 841 | 6/5/2019 |
14.5.2 | 800 | 5/30/2019 |
14.5.1 | 820 | 5/28/2019 |
14.5.0 | 764 | 5/24/2019 |
14.4.0 | 808 | 5/22/2019 |
14.3.4 | 829 | 5/14/2019 |
14.3.3 | 819 | 5/9/2019 |
14.3.2 | 818 | 4/30/2019 |
14.3.1 | 843 | 4/27/2019 |
14.3.0 | 837 | 4/24/2019 |
14.2.3 | 808 | 4/17/2019 |
14.2.2 | 836 | 4/10/2019 |
14.2.1 | 820 | 4/5/2019 |
14.2.0 | 809 | 3/16/2019 |
14.1.1 | 859 | 3/8/2019 |
14.1.0 | 940 | 2/11/2019 |
14.0.4 | 939 | 1/31/2019 |
14.0.3 | 923 | 1/22/2019 |
14.0.2 | 955 | 12/15/2018 |
14.0.1 | 999 | 11/29/2018 |
14.0.0 | 969 | 11/19/2018 |
13.3.0 | 972 | 11/16/2018 |
13.2.2 | 966 | 11/15/2018 |
13.2.1 | 1,002 | 11/13/2018 |
13.2.0 | 971 | 10/31/2018 |
13.1.5 | 1,027 | 10/31/2018 |
13.1.4 | 1,057 | 10/25/2018 |
13.1.3 | 1,003 | 10/18/2018 |
13.1.2 | 1,088 | 9/12/2018 |
13.1.1 | 1,035 | 9/11/2018 |
13.1.0 | 1,072 | 9/11/2018 |
13.0.0 | 1,060 | 8/29/2018 |
12.3.6 | 1,059 | 8/29/2018 |