Audit.NET.AzureStorage 27.5.1

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

Audit.NET.AzureStorage

Azure Blob and Azure Table storage providers for Audit.NET library (An extensible framework to audit executing operations in .NET).

Store the audit events in an Azure Storage container, as Blob files in JSON format, or as rows on an Azure Table.

Install

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

PM> Install-Package Audit.NET.AzureStorage

NuGet Status NuGet Count

IMPORTANT NOTES

Warning

This library has been deprecated.

This library uses the legacy client WindowsAzure.Storage package which has been deprecated and split into multiple client libraries (Azure.Storage.Blobs, Azure.Data.Tables, etc).

Suggested Alternatives

Usage

Please see the Audit.NET Readme

Configuration

Set the static Audit.Core.Configuration.DataProvider property to set one of the Azure Storage data providers, or call the UseAzureBlobStorage()/UseAzureTableStorage() methods on the fluent configuration. This should be done before any AuditScope creation, i.e. during application startup.

1- Azure Blob Storage

Stores each audit event as a BLOB file with the JSON representation of the Audit Event.

Configuration examples

Using a connection string:

Audit.Core.Configuration.Setup()
    .UseAzureBlobStorage(config => config
        .ConnectionString("DefaultEndpointsProtocol=https;AccountName=your account;AccountKey=your key")
        .ContainerName("event")
        .BlobName(ev => $"{ev.StartDate:yyyy-MM}/{ev.Environment.UserName}/{Guid.NewGuid()}.json")
        .WithAccessTier(StandardBlobTier.Cool)
        .WithMetadata(ev => new Dictionary<string, string>() { { "user", ev.Environment.UserName } }));

Using Azure Active Directory (authentication token):

Audit.Core.Configuration.Setup()
    .UseAzureBlobStorage(config => config
        .AzureActiveDirectory(adConfig => adConfig
            .AccountName("your account")
            .TenantId("your tenant ID"))
        .ContainerName("event")
        .BlobName(ev => $"{Guid.NewGuid()}.json"));
Provider Options
Authentication options

Depending on the authentication method, you can call one of the following two methods:

  • ConnectionString: To use Account Access Key or SAS authentication via an Azure Storage connection string.
  • AzureActiveDirectory: To use Azure Active Directory authentication via access tokens acquired automatically.
AzureActiveDirectory configuration

When using Azure Active Directory authentication you can provide the following configuration to AzureActiveDirectory() method:

  • AccountName: The Account Name of your Azure Storage.

  • TenantId: The Tenant ID, this is your Azure Active Directory ID. See How to get it.

  • AuthConnectionString: (Optional) Specifies a custom connection string for the Token Provider. Check this for more information.

  • ResouceUrl: (Optional) Specifies a custom resource URL to acquire the tokens for. By default the Azure Storage resource ID https://storage.azure.com/ is used.

  • EndpointSuffix: (Optional) Specifies a custom DNS endpoint suffix to use for the storage services. Default is core.windows.net.

  • UseHttps: (Optional) Specifies whether to use HTTPS to connect to storage service endpoints. Default is true.

Container options
  • ContainerName/ContainerNameBuilder: The container name to use (see the naming restrictions here). By default, "event" is used as the container name.
  • BlobName: A function that takes an Audit Event and returns a unique blob name for the event. The resulting name can include path information (slash separated sub-folders). By default, a random Guid is used as the blob name.
  • WithAccessTier: (optional) A function that takes an Audit Event and returns the Standard BLOB Access Tier to set after the blob upload. Note that using this setting implies that each upload will require two calls: one to upload the blob, and another one to set the access tier.
  • WithMetadata: (optional) A function that takes an Audit Event and returns a set of key-value pairs to be associated with the blob storage resource.
Query events

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

var event = blobDataProvider.GetEvent("eventId");

2- Azure Table Storage

Stores each audit event as a new row on an Azure Table, allowing to dynamically configure the columns.

Configuration example:

Audit.Core.Configuration.DataProvider = new AzureTableDataProvider()
{
    ConnectionString = "DefaultEndpointsProtocol=https;AccountName=your account;AccountKey=your key",
    TableName = "Events",
    TableEntityMapper = ev => new AuditEventTableEntity(ev)
};

Or by using the fluent configuration API via UseAzureTableStorage method:

Audit.Core.Configuration.Setup()
    .UseAzureTableStorage(_ => _
        .ConnectionString("DefaultEndpointsProtocol=https;AccountName=your account;AccountKey=your key")
        .TableName("Events")
        .EntityMapper(ev => new AuditEventTableEntity(ev)));

You can set the entity mapper to return any class implementing ITableEntity, as the provided default AuditEventTableEntity.

As an alternative, you can use EntityBuilder() method to configure the columns mapping:

Audit.Core.Configuration.Setup()
    .UseAzureTableStorage(_ => _
        .ConnectionString("DefaultEndpointsProtocol=https;AccountName=your account;AccountKey=your key")
        .TableName("Events")
        .EntityBuilder(e => e
            .PartitionKey(ev => $"Events{ev.StartDate:yyyyMM}")
            .RowKey(ev => Guid.NewGuid().ToString())
            .Columns(c => c.FromObject(ev => new { Date = ev.StartDate, AuditEventJson = ev.ToJson() }))));
Provider Options

Mandatory:

  • ConnectionString/ConnectionStringBuilder: The Azure Storage connection string.

Optional:

  • TableName: The table name to use. By default, "event" is used as the table name.
  • EntityMapper: A function that defines a mapping from an Audit Event to a Table Entity.
  • EntityBuilder: An alternative way to dynamically specify the table entity mapping for audit events:
    • PartitionKey: A function of the audit event that returns the partition key to use.
    • RowKey: A function of the audit event that returns the row key to use.
    • Columns: Provides a way to generate the extra columns from an anonymous object or a dictionary.
Query events

The Azure Table data provider does not implements GetEvent nor GetEventAsync methods.

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 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
27.5.1 61 4 days ago
27.5.0 650 a month ago
27.4.1 149 2 months ago
27.4.0 238 2 months ago
27.3.3 207 3 months ago
27.3.2 592 4 months ago
27.3.1 91 4 months ago
27.3.0 120 4 months ago
27.2.0 226 5 months ago
27.1.1 1,203 5 months ago
27.1.0 138 5 months ago
27.0.3 5,006 6 months ago
27.0.2 444 7 months ago
27.0.1 258 7 months ago
27.0.0 122 7 months ago
26.0.1 149 8 months ago
26.0.0 1,231 9 months ago
25.0.7 834 9 months ago
25.0.6 136 9 months ago
25.0.5 835 10 months ago
25.0.4 1,490 3/24/2024
25.0.3 194 3/13/2024
25.0.2 630 3/12/2024
25.0.1 594 2/28/2024
25.0.0 381 2/16/2024
24.0.1 270 2/12/2024
24.0.0 152 2/12/2024
23.0.0 5,621 12/14/2023
22.1.0 156 12/9/2023
22.0.2 216 12/1/2023
22.0.1 1,568 11/16/2023
22.0.0 149 11/14/2023
21.1.0 568 10/9/2023
21.0.4 239 9/15/2023
21.0.3 3,540 7/9/2023
21.0.2 215 7/6/2023
21.0.1 909 5/27/2023
21.0.0 1,057 4/15/2023
20.2.4 457 3/27/2023
20.2.3 304 3/17/2023
20.2.2 280 3/14/2023
20.2.1 305 3/11/2023
20.2.0 884 3/7/2023
20.1.6 335 2/23/2023
20.1.5 4,573 2/9/2023
20.1.4 2,394 1/28/2023
20.1.3 756 12/21/2022
20.1.2 538 12/14/2022
20.1.1 380 12/12/2022
20.1.0 562 12/4/2022
20.0.4 446 11/30/2022
20.0.3 1,742 10/28/2022
20.0.2 502 10/26/2022
20.0.1 545 10/21/2022
20.0.0 626 10/1/2022
19.4.1 958 9/10/2022
19.4.0 3,282 9/2/2022
19.3.0 885 8/23/2022
19.2.2 556 8/11/2022
19.2.1 540 8/6/2022
19.2.0 698 7/24/2022
19.1.4 13,181 5/23/2022
19.1.3 575 5/22/2022
19.1.2 678 5/18/2022
19.1.1 11,080 4/28/2022
19.1.0 19,860 4/10/2022
19.0.7 5,382 3/13/2022
19.0.6 678 3/7/2022
19.0.5 2,572 1/28/2022
19.0.4 936 1/23/2022
19.0.3 14,488 12/14/2021
19.0.2 475 12/11/2021
19.0.1 2,279 11/20/2021
19.0.0 846 11/11/2021
19.0.0-rc.net60.2 193 9/26/2021
19.0.0-rc.net60.1 235 9/16/2021
18.1.6 4,695 9/26/2021
18.1.5 5,712 9/7/2021
18.1.4 556 9/6/2021
18.1.3 3,648 8/19/2021
18.1.2 10,024 8/8/2021
18.1.1 2,292 8/5/2021
18.1.0 645 8/1/2021
18.0.1 558 7/30/2021
18.0.0 1,400 7/26/2021
17.0.8 4,284 7/7/2021
17.0.7 2,136 6/16/2021
17.0.6 573 6/5/2021
17.0.5 972 5/28/2021
17.0.4 7,465 5/4/2021
17.0.3 551 5/1/2021
17.0.2 1,540 4/22/2021
17.0.1 14,153 4/18/2021
17.0.0 6,003 3/26/2021
16.5.6 591 3/25/2021
16.5.5 564 3/23/2021
16.5.4 2,047 3/9/2021
16.5.3 921 2/26/2021
16.5.2 589 2/23/2021
16.5.1 1,131 2/21/2021
16.5.0 634 2/17/2021
16.4.5 560 2/15/2021
16.4.4 2,929 2/5/2021
16.4.3 1,307 1/27/2021
16.4.2 598 1/22/2021
16.4.1 619 1/21/2021
16.4.0 1,056 1/11/2021
16.3.3 634 1/8/2021
16.3.2 633 1/3/2021
16.3.1 634 12/31/2020
16.3.0 596 12/30/2020
16.2.1 3,667 12/27/2020
16.2.0 9,311 10/13/2020
16.1.5 683 10/4/2020
16.1.4 952 9/17/2020
16.1.3 1,447 9/13/2020
16.1.2 665 9/9/2020
16.1.1 736 9/3/2020
16.1.0 4,786 8/19/2020
16.0.3 766 8/15/2020
16.0.2 1,096 8/9/2020
16.0.1 757 8/8/2020
16.0.0 637 8/7/2020
15.3.0 4,026 7/23/2020
15.2.3 1,014 7/14/2020
15.2.2 11,266 5/19/2020
15.2.1 1,272 5/12/2020
15.2.0 707 5/9/2020
15.1.1 2,185 5/4/2020
15.1.0 7,608 4/13/2020
15.0.5 8,486 3/18/2020
15.0.4 2,594 2/28/2020
15.0.3 853 2/26/2020
15.0.2 7,423 1/20/2020
15.0.1 19,802 1/10/2020
15.0.0 983 12/17/2019
14.9.1 1,239 11/30/2019
14.9.0 729 11/29/2019
14.8.1 753 11/26/2019
14.8.0 746 11/20/2019
14.7.0 3,400 10/9/2019
14.6.6 781 10/8/2019
14.6.5 1,514 9/27/2019
14.6.4 943 9/21/2019
14.6.3 1,025 8/12/2019
14.6.2 800 8/3/2019
14.6.1 807 8/3/2019
14.6.0 805 7/26/2019
14.5.7 1,195 7/18/2019
14.5.6 903 7/10/2019
14.5.5 828 7/1/2019
14.5.4 781 6/17/2019
14.5.3 783 6/5/2019
14.5.2 822 5/30/2019
14.5.1 5,815 5/28/2019
14.5.0 989 5/24/2019
14.4.0 1,334 5/22/2019
14.3.4 848 5/14/2019
14.3.3 1,032 5/9/2019
14.3.2 864 4/30/2019
14.3.1 808 4/27/2019
14.3.0 831 4/24/2019
14.2.3 834 4/17/2019
14.2.2 837 4/10/2019
14.2.1 793 4/5/2019
14.2.0 16,233 3/16/2019
14.1.1 1,221 3/8/2019
14.1.0 1,141 2/11/2019
14.0.4 1,135 1/31/2019
14.0.3 1,385 1/22/2019
14.0.2 974 12/15/2018
14.0.1 1,727 11/29/2018
14.0.0 1,037 11/19/2018
13.3.0 996 11/16/2018
13.2.2 984 11/15/2018
13.2.1 1,007 11/13/2018
13.2.0 1,030 10/31/2018
13.1.5 998 10/31/2018
13.1.4 1,035 10/25/2018
13.1.3 1,075 10/18/2018
13.1.2 1,232 9/12/2018
13.1.1 1,069 9/11/2018
13.1.0 1,065 9/11/2018
13.0.0 1,796 8/29/2018
12.3.6 1,077 8/29/2018
12.3.5 1,180 8/22/2018
12.3.4 1,118 8/21/2018
12.3.3 25,832 8/21/2018
12.3.2 1,119 8/20/2018
12.3.1 1,115 8/20/2018
12.3.0 1,129 8/20/2018
12.2.2 1,177 8/15/2018
12.2.1 1,174 8/9/2018
12.2.0 1,200 8/8/2018
12.1.11 1,171 7/30/2018
12.1.10 1,166 7/20/2018
12.1.9 1,426 7/10/2018
12.1.8 1,234 7/2/2018
12.1.7 5,110 6/7/2018
12.1.6 1,366 6/4/2018
12.1.5 1,305 6/2/2018
12.1.4 1,206 5/25/2018
12.1.3 1,458 5/16/2018
12.1.2 1,242 5/15/2018
12.1.1 1,410 5/14/2018
12.1.0 1,345 5/9/2018
12.0.7 1,425 5/5/2018
12.0.6 1,261 5/4/2018
12.0.5 1,374 5/3/2018
12.0.4 1,463 4/30/2018
12.0.3 1,443 4/30/2018
12.0.2 1,420 4/27/2018
12.0.1 1,271 4/25/2018
12.0.0 1,275 4/22/2018
11.2.0 1,809 4/11/2018
11.1.0 1,258 4/8/2018
11.0.8 1,392 3/26/2018
11.0.7 1,395 3/20/2018
11.0.6 1,415 3/7/2018
11.0.5 1,209 2/22/2018
11.0.4 1,403 2/14/2018
11.0.3 1,344 2/12/2018
11.0.2 1,258 2/9/2018
11.0.1 1,374 1/29/2018
11.0.0 1,382 1/15/2018
10.0.3 1,441 12/29/2017
10.0.2 1,368 12/26/2017
10.0.1 1,391 12/18/2017
10.0.0 1,262 12/18/2017
9.3.0 1,474 12/17/2017
9.2.0 1,410 12/17/2017
9.1.3 11,603 12/5/2017
9.1.2 1,486 11/27/2017
9.1.1 1,334 11/21/2017
9.1.0 1,257 11/21/2017
9.0.1 1,299 11/11/2017
9.0.0 1,305 11/10/2017
8.7.0 1,297 11/9/2017
8.6.0 1,299 11/9/2017
8.5.0 2,144 10/3/2017
8.4.0 1,323 10/3/2017
8.3.1 1,771 9/8/2017
8.3.0 1,362 9/8/2017
8.2.0 1,341 9/4/2017
8.1.0 1,330 8/22/2017
8.0.0 6,084 8/19/2017
7.1.3 1,292 8/14/2017
7.1.2 1,279 8/2/2017
7.1.1 1,372 7/26/2017
7.1.0 1,396 7/5/2017
7.0.9 1,300 6/28/2017
7.0.8 1,331 6/19/2017
7.0.6 1,369 4/7/2017
7.0.5 1,324 3/21/2017
7.0.4 1,363 3/21/2017
7.0.3 1,396 3/20/2017
7.0.2 1,347 3/13/2017
7.0.0 1,384 3/1/2017
6.2.0 1,436 2/25/2017
6.1.0 1,362 2/14/2017
6.0.0 1,399 2/9/2017
5.3.0 1,373 2/5/2017
5.2.0 1,522 1/26/2017
5.1.0 1,327 1/19/2017
5.0.0 1,291 1/7/2017
4.11.0 1,382 1/5/2017
4.10.0 1,317 12/31/2016
4.9.0 1,326 12/26/2016
4.8.0 1,396 12/17/2016
4.7.0 1,355 12/8/2016
4.6.5 1,273 12/4/2016
4.6.4 1,333 11/25/2016
4.6.2 1,329 11/18/2016
4.6.1 1,312 11/15/2016
4.6.0 1,334 11/11/2016
4.5.9 1,640 11/2/2016
4.5.8 1,380 11/2/2016
4.5.7 1,318 10/26/2016
4.5.6 1,329 10/6/2016
4.5.5 1,366 10/3/2016
4.5.4 1,292 10/2/2016
4.5.3 1,295 9/30/2016
4.5.2 1,329 9/28/2016
4.5.1 1,302 9/28/2016
4.5.0 1,277 9/28/2016
4.4.0 1,572 9/23/2016
4.3.0 1,471 9/22/2016