Audit.NET.PostgreSql 27.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Audit.NET.PostgreSql --version 27.3.0                
NuGet\Install-Package Audit.NET.PostgreSql -Version 27.3.0                
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.PostgreSql" Version="27.3.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Audit.NET.PostgreSql --version 27.3.0                
#r "nuget: Audit.NET.PostgreSql, 27.3.0"                
#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.PostgreSql as a Cake Addin
#addin nuget:?package=Audit.NET.PostgreSql&version=27.3.0

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

Audit.NET.PostgreSql

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

Store the audit events in a PostgreSQL Table, in JSON format.

Install

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

PM> Install-Package Audit.NET.PostgreSql

NuGet Status NuGet Count

Usage

Please see the Audit.NET Readme

Configuration

Set the static Audit.Core.Configuration.DataProvider property to set the PostgreSQL data provider, or call the UsePostgreSql 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 PostgreSqlDataProvider()
{
    ConnectionString = "Server=127.0.0.1;Port=5432;User Id=admin;Password=admin;Database=postgres;",
    TableName = "event",
    IdColumnName = "id",
    DataColumnName = "data",
    DataType = "JSONB",
    LastUpdatedDateColumnName = "updated_date",
    CustomColumns = new List<CustomColumn>()
    {
        new CustomColumn("event_type", ev => ev.EventType),
        new CustomColumn("user", ev => ev.Environment.UserName),
    }
};

Or by using the fluent configuration API:

Audit.Core.Configuration.Setup()
    .UsePostgreSql(config => config
        .ConnectionString("Server=127.0.0.1;Port=5432;User Id=admin;Password=admin;Database=postgres;")
        .TableName("event")
        .IdColumnName("id")
        .DataColumn("data", DataType.JSONB)
        .LastUpdatedColumnName("updated_date")
        .CustomColumn("event_type", ev => ev.EventType)
        .CustomColumn("user", ev => ev.Environment.UserName));

Provider Options

Mandatory:

  • ConnectionString: The PostgreSQL Server connection string.
  • TableName: The events table name.
  • DataColumnName: The column name of the event table where the JSON will be stored.
  • IdColumnName: The column name of the event identifier (the primary key).

Optional:

  • Schema: The PostgreSQL schema to use.
  • DataType: The type of the data column that stores the events. Can be JSON, JSONP or STRING. (Default is JSON).
  • LastUpdatedDateColumnName: The datetime column name to update when replacing events.
  • CustomColumn: Additional columns to store information from the audit event. (optional)

Table constraints

  • The table must exists.
  • The table must have a single ID column (Unique or Primary key).
  • The type of the ID column must be convertible to STRING.

For example:

CREATE TABLE public.event
(
    id bigserial NOT NULL,
    inserted_date timestamp without time zone NOT NULL DEFAULT now(),
    updated_date timestamp without time zone NOT NULL DEFAULT now(),
    data jsonb NOT NULL,
    event_type varchar(50),
    user varchar(50) NULL,
    CONSTRAINT event_pkey PRIMARY KEY (id)
)
WITH (
    OIDS = FALSE
)
TABLESPACE pg_default;

Query events

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

var event = dataProvider.GetEvent(1000);

The Postgre SQL data provider also includes basic support for querying the events collection.

Use the EnumerateEvents() method on PostgreSqlDataProvider class to run SQL-like queries against the audit events. The EnumerateEvents() method accepts any valid Postgre WHERE clause as a parameter.

For example:

IEnumerable<AuditEvent> events = postgreDataProvider.EnumerateEvents(
       "data #> '{Environment,UserName}' = '\"John\"'");

Will return the events whose property Environment.UserName is equal to 'John'.

This post contains information about the query syntax supported by JSONP data type. And here is the PostgreSQL documentation about JSON operators.

For complex querying capabilities, you should use the npgsql driver or the Npgsql EntityFramework provider directly.

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 is compatible. 
.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 (7)

Showing the top 5 NuGet packages that depend on Audit.NET.PostgreSql:

Package Downloads
Reo.Core.AutoHistory

Package Description

Reo.Core.Database

Package Description

Reo.Core.Testing

Package Description

Reo.Core.IntegrationTesting

Package Description

Dalmarkit.AspNetCore

Dalmarkit is an opinionated .NET utility library that simplifies the building of AWS Cognito secured JSON REST APIs with audit trails using ASP.NET Core and Entity Framework Core with PostgreSQL.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
27.3.2 3,071 12/11/2024
27.3.1 174 12/10/2024
27.3.0 272 12/8/2024
27.2.0 7,577 11/23/2024
27.1.1 11,701 10/28/2024
27.1.0 939 10/24/2024
27.0.3 11,556 9/25/2024
27.0.2 4,842 9/19/2024
27.0.1 1,761 9/4/2024
27.0.0 562 9/3/2024
26.0.1 8,521 8/22/2024
26.0.0 18,872 7/19/2024
25.0.7 28,521 7/4/2024
25.0.6 2,553 6/24/2024
25.0.5 467 6/18/2024
25.0.4 114,613 3/24/2024
25.0.3 1,207 3/13/2024
25.0.2 274 3/12/2024
25.0.1 11,856 2/28/2024
25.0.0 96,421 2/16/2024
24.0.1 1,266 2/12/2024
24.0.0 135 2/12/2024
23.0.0 101,398 12/14/2023
22.1.0 8,196 12/9/2023
22.0.2 4,173 12/1/2023
22.0.1 30,598 11/16/2023
22.0.0 443 11/14/2023
21.1.0 36,805 10/9/2023
21.0.4 16,090 9/15/2023
21.0.3 37,551 7/9/2023
21.0.2 214 7/6/2023
21.0.1 29,881 5/27/2023
21.0.0 67,550 4/15/2023
20.2.4 37,822 3/27/2023
20.2.3 125,271 3/17/2023
20.2.2 7,142 3/14/2023
20.2.1 343 3/11/2023
20.2.0 699 3/7/2023
20.1.6 59,993 2/23/2023
20.1.5 2,351 2/9/2023
20.1.4 43,341 1/28/2023
20.1.3 61,246 12/21/2022
20.1.2 3,889 12/14/2022
20.1.1 5,778 12/12/2022
20.1.0 1,925 12/4/2022
20.0.4 2,327 11/30/2022
20.0.3 5,269 10/28/2022
20.0.2 646 10/26/2022
20.0.1 3,048 10/21/2022
20.0.0 4,287 10/1/2022
19.4.1 7,820 9/10/2022
19.4.0 1,529 9/2/2022
19.3.0 2,942 8/23/2022
19.2.2 4,088 8/11/2022
19.2.1 628 8/6/2022
19.2.0 1,926 7/24/2022
19.1.4 12,357 5/23/2022
19.1.3 538 5/22/2022
19.1.2 1,472 5/18/2022
19.1.1 38,391 4/28/2022
19.1.0 54,656 4/10/2022
19.0.7 26,250 3/13/2022
19.0.6 1,280 3/7/2022
19.0.5 22,598 1/28/2022
19.0.4 1,084 1/23/2022
19.0.3 21,102 12/14/2021
19.0.2 1,681 12/11/2021
19.0.1 2,079 11/20/2021
19.0.0 2,429 11/11/2021
19.0.0-rc.net60.2 1,105 9/26/2021
19.0.0-rc.net60.1 242 9/16/2021
18.1.6 778,167 9/26/2021
18.1.5 42,048 9/7/2021
18.1.4 32,838 9/6/2021
18.1.3 5,266 8/19/2021
18.1.2 1,254 8/8/2021
18.1.1 495 8/5/2021
18.1.0 941 8/1/2021
18.0.1 526 7/30/2021
18.0.0 541 7/26/2021
17.0.8 16,036 7/7/2021
17.0.7 753 6/16/2021
17.0.6 635 6/5/2021
17.0.5 757 5/28/2021
17.0.4 3,151 5/4/2021
17.0.3 538 5/1/2021
17.0.2 8,853 4/22/2021
17.0.1 515 4/18/2021
17.0.0 997 3/26/2021
16.5.6 546 3/25/2021
16.5.5 6,524 3/23/2021
16.5.4 748 3/9/2021
16.5.3 536 2/26/2021
16.5.2 518 2/23/2021
16.5.1 3,460 2/21/2021
16.5.0 7,358 2/17/2021
16.4.5 523 2/15/2021
16.4.4 944 2/5/2021
16.4.3 527 1/27/2021
16.4.2 4,333 1/22/2021
16.4.1 573 1/21/2021
16.4.0 1,230 1/11/2021
16.3.3 583 1/8/2021
16.3.2 588 1/3/2021
16.3.1 596 12/31/2020
16.3.0 554 12/30/2020
16.2.1 4,739 12/27/2020
16.2.0 18,150 10/13/2020
16.1.5 697 10/4/2020
16.1.4 4,699 9/17/2020
16.1.3 1,727 9/13/2020
16.1.2 604 9/9/2020
16.1.1 1,174 9/3/2020
16.1.0 687 8/19/2020
16.0.3 727 8/15/2020
16.0.2 13,374 8/9/2020
16.0.1 643 8/8/2020
16.0.0 1,795 8/7/2020
15.3.0 291,384 7/23/2020
15.2.3 2,838 7/14/2020
15.2.2 51,084 5/19/2020
15.2.1 3,729 5/12/2020
15.2.0 672 5/9/2020
15.1.1 655 5/4/2020
15.1.0 2,783 4/13/2020
15.0.5 786 3/18/2020
15.0.4 706 2/28/2020
15.0.3 613 2/26/2020
15.0.2 4,896 1/20/2020
15.0.1 742 1/10/2020
15.0.0 734 12/17/2019
14.9.1 733 11/30/2019
14.9.0 686 11/29/2019
14.8.1 676 11/26/2019
14.8.0 870 11/20/2019
14.7.0 981 10/9/2019
14.6.6 691 10/8/2019
14.6.5 39,074 9/27/2019
14.6.4 645 9/21/2019
14.6.3 5,418 8/12/2019
14.6.2 798 8/3/2019
14.6.1 718 8/3/2019
14.6.0 741 7/26/2019
14.5.7 748 7/18/2019
14.5.6 1,076 7/10/2019
14.5.5 715 7/1/2019
14.5.4 711 6/17/2019
14.5.3 771 6/5/2019
14.5.2 747 5/30/2019
14.5.1 7,478 5/28/2019
14.5.0 3,064 5/24/2019
14.4.0 782 5/22/2019
14.3.4 2,224 5/14/2019
14.3.3 732 5/9/2019
14.3.2 895 4/30/2019
14.3.1 764 4/27/2019
14.3.0 5,636 4/24/2019
14.2.3 879 4/17/2019
14.2.2 750 4/10/2019
14.2.1 16,014 4/5/2019
14.2.0 782 3/16/2019
14.1.1 764 3/8/2019
14.1.0 2,095 2/11/2019
14.0.4 2,784 1/31/2019
14.0.3 5,892 1/22/2019
14.0.2 1,429 12/15/2018
14.0.1 920 11/29/2018
14.0.0 935 11/19/2018
13.3.0 967 11/16/2018
13.2.2 930 11/15/2018
13.2.1 2,886 11/13/2018
13.2.0 1,020 10/31/2018
13.1.5 943 10/31/2018
13.1.4 974 10/25/2018
13.1.3 963 10/18/2018
13.1.2 1,122 9/12/2018
13.1.1 1,013 9/11/2018
13.1.0 1,001 9/11/2018
13.0.0 1,068 8/29/2018
12.3.6 1,041 8/29/2018
12.3.5 1,059 8/22/2018
12.3.4 1,448 8/21/2018
12.3.3 25,814 8/21/2018
12.3.2 1,057 8/20/2018
12.3.1 1,070 8/20/2018
12.3.0 1,063 8/20/2018
12.2.2 1,100 8/15/2018
12.2.1 1,082 8/9/2018
12.2.0 1,016 8/8/2018
12.1.11 1,033 7/30/2018
12.1.10 1,114 7/20/2018
12.1.9 1,153 7/10/2018
12.1.8 1,052 7/2/2018
12.1.7 1,215 6/7/2018
12.1.6 1,180 6/4/2018
12.1.5 1,157 6/2/2018
12.1.4 1,226 5/25/2018
12.1.3 1,265 5/16/2018
12.1.2 1,108 5/15/2018
12.1.1 1,241 5/14/2018
12.1.0 1,363 5/9/2018
12.0.7 1,279 5/5/2018
12.0.6 1,276 5/4/2018
12.0.5 1,225 5/3/2018
12.0.4 1,211 4/30/2018
12.0.3 1,260 4/30/2018
12.0.2 1,164 4/27/2018
12.0.1 1,242 4/25/2018
12.0.0 1,157 4/22/2018
11.2.0 1,139 4/11/2018
11.1.0 1,224 4/8/2018
11.0.8 1,200 3/26/2018
11.0.7 1,194 3/20/2018
11.0.6 1,190 3/7/2018
11.0.5 1,133 2/22/2018
11.0.4 1,244 2/14/2018
11.0.3 1,171 2/12/2018
11.0.2 1,165 2/9/2018
11.0.1 1,124 1/29/2018
11.0.0 1,166 1/15/2018
10.0.3 1,118 12/29/2017
10.0.2 1,167 12/26/2017
10.0.1 1,182 12/18/2017
10.0.0 1,086 12/18/2017
9.3.0 1,200 12/17/2017
9.2.0 1,157 12/17/2017
9.1.3 1,182 12/5/2017
9.1.2 1,143 11/27/2017
9.1.1 1,154 11/21/2017
9.1.0 1,113 11/21/2017
9.0.1 1,112 11/11/2017
9.0.0 1,158 11/10/2017
8.7.0 1,172 11/9/2017
8.6.0 1,167 11/9/2017
8.5.0 1,181 10/3/2017
8.4.0 1,276 10/3/2017