Audit.NET.PostgreSql 26.0.1

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

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

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. 
.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.1.1 5,744 10/28/2024
27.1.0 841 10/24/2024
27.0.3 10,110 9/25/2024
27.0.2 4,152 9/19/2024
27.0.1 1,500 9/4/2024
27.0.0 448 9/3/2024
26.0.1 7,321 8/22/2024
26.0.0 18,473 7/19/2024
25.0.7 22,320 7/4/2024
25.0.6 2,028 6/24/2024
25.0.5 450 6/18/2024
25.0.4 102,936 3/24/2024
25.0.3 1,193 3/13/2024
25.0.2 265 3/12/2024
25.0.1 11,494 2/28/2024
25.0.0 87,353 2/16/2024
24.0.1 1,234 2/12/2024
24.0.0 123 2/12/2024
23.0.0 91,766 12/14/2023
22.1.0 6,806 12/9/2023
22.0.2 4,165 12/1/2023
22.0.1 30,473 11/16/2023
22.0.0 422 11/14/2023
21.1.0 36,228 10/9/2023
21.0.4 15,670 9/15/2023
21.0.3 37,386 7/9/2023
21.0.2 197 7/6/2023
21.0.1 27,982 5/27/2023
21.0.0 67,504 4/15/2023
20.2.4 37,729 3/27/2023
20.2.3 125,263 3/17/2023
20.2.2 7,132 3/14/2023
20.2.1 335 3/11/2023
20.2.0 690 3/7/2023
20.1.6 59,276 2/23/2023
20.1.5 2,342 2/9/2023
20.1.4 43,329 1/28/2023
20.1.3 61,106 12/21/2022
20.1.2 3,766 12/14/2022
20.1.1 5,183 12/12/2022
20.1.0 1,912 12/4/2022
20.0.4 2,295 11/30/2022
20.0.3 5,216 10/28/2022
20.0.2 635 10/26/2022
20.0.1 2,953 10/21/2022
20.0.0 4,179 10/1/2022
19.4.1 7,701 9/10/2022
19.4.0 1,513 9/2/2022
19.3.0 2,890 8/23/2022
19.2.2 3,991 8/11/2022
19.2.1 616 8/6/2022
19.2.0 1,915 7/24/2022
19.1.4 12,250 5/23/2022
19.1.3 527 5/22/2022
19.1.2 1,461 5/18/2022
19.1.1 38,370 4/28/2022
19.1.0 54,514 4/10/2022
19.0.7 25,981 3/13/2022
19.0.6 1,262 3/7/2022
19.0.5 21,519 1/28/2022
19.0.4 1,073 1/23/2022
19.0.3 20,977 12/14/2021
19.0.2 1,668 12/11/2021
19.0.1 2,051 11/20/2021
19.0.0 2,418 11/11/2021
19.0.0-rc.net60.2 1,098 9/26/2021
19.0.0-rc.net60.1 237 9/16/2021
18.1.6 775,971 9/26/2021
18.1.5 42,038 9/7/2021
18.1.4 32,826 9/6/2021
18.1.3 5,252 8/19/2021
18.1.2 1,243 8/8/2021
18.1.1 482 8/5/2021
18.1.0 928 8/1/2021
18.0.1 513 7/30/2021
18.0.0 528 7/26/2021
17.0.8 15,814 7/7/2021
17.0.7 741 6/16/2021
17.0.6 622 6/5/2021
17.0.5 744 5/28/2021
17.0.4 3,134 5/4/2021
17.0.3 527 5/1/2021
17.0.2 8,802 4/22/2021
17.0.1 502 4/18/2021
17.0.0 985 3/26/2021
16.5.6 533 3/25/2021
16.5.5 6,511 3/23/2021
16.5.4 736 3/9/2021
16.5.3 523 2/26/2021
16.5.2 505 2/23/2021
16.5.1 3,447 2/21/2021
16.5.0 7,345 2/17/2021
16.4.5 512 2/15/2021
16.4.4 930 2/5/2021
16.4.3 516 1/27/2021
16.4.2 4,253 1/22/2021
16.4.1 562 1/21/2021
16.4.0 1,217 1/11/2021
16.3.3 571 1/8/2021
16.3.2 574 1/3/2021
16.3.1 583 12/31/2020
16.3.0 541 12/30/2020
16.2.1 4,525 12/27/2020
16.2.0 18,076 10/13/2020
16.1.5 685 10/4/2020
16.1.4 4,338 9/17/2020
16.1.3 1,716 9/13/2020
16.1.2 593 9/9/2020
16.1.1 1,163 9/3/2020
16.1.0 676 8/19/2020
16.0.3 713 8/15/2020
16.0.2 13,362 8/9/2020
16.0.1 630 8/8/2020
16.0.0 1,782 8/7/2020
15.3.0 291,299 7/23/2020
15.2.3 2,825 7/14/2020
15.2.2 51,002 5/19/2020
15.2.1 3,717 5/12/2020
15.2.0 659 5/9/2020
15.1.1 644 5/4/2020
15.1.0 2,680 4/13/2020
15.0.5 774 3/18/2020
15.0.4 692 2/28/2020
15.0.3 600 2/26/2020
15.0.2 4,832 1/20/2020
15.0.1 730 1/10/2020
15.0.0 720 12/17/2019
14.9.1 722 11/30/2019
14.9.0 673 11/29/2019
14.8.1 663 11/26/2019
14.8.0 856 11/20/2019
14.7.0 967 10/9/2019
14.6.6 680 10/8/2019
14.6.5 38,548 9/27/2019
14.6.4 632 9/21/2019
14.6.3 5,401 8/12/2019
14.6.2 787 8/3/2019
14.6.1 705 8/3/2019
14.6.0 726 7/26/2019
14.5.7 737 7/18/2019
14.5.6 1,063 7/10/2019
14.5.5 702 7/1/2019
14.5.4 699 6/17/2019
14.5.3 758 6/5/2019
14.5.2 736 5/30/2019
14.5.1 7,467 5/28/2019
14.5.0 2,823 5/24/2019
14.4.0 769 5/22/2019
14.3.4 2,212 5/14/2019
14.3.3 721 5/9/2019
14.3.2 883 4/30/2019
14.3.1 753 4/27/2019
14.3.0 5,564 4/24/2019
14.2.3 866 4/17/2019
14.2.2 737 4/10/2019
14.2.1 15,995 4/5/2019
14.2.0 767 3/16/2019
14.1.1 753 3/8/2019
14.1.0 2,080 2/11/2019
14.0.4 2,767 1/31/2019
14.0.3 5,875 1/22/2019
14.0.2 1,411 12/15/2018
14.0.1 900 11/29/2018
14.0.0 915 11/19/2018
13.3.0 951 11/16/2018
13.2.2 913 11/15/2018
13.2.1 2,869 11/13/2018
13.2.0 1,001 10/31/2018
13.1.5 926 10/31/2018
13.1.4 955 10/25/2018
13.1.3 943 10/18/2018
13.1.2 1,103 9/12/2018
13.1.1 991 9/11/2018
13.1.0 982 9/11/2018
13.0.0 1,049 8/29/2018
12.3.6 1,020 8/29/2018
12.3.5 1,040 8/22/2018
12.3.4 1,429 8/21/2018
12.3.3 25,793 8/21/2018
12.3.2 1,038 8/20/2018
12.3.1 1,044 8/20/2018
12.3.0 1,042 8/20/2018
12.2.2 1,081 8/15/2018
12.2.1 1,063 8/9/2018
12.2.0 997 8/8/2018
12.1.11 1,014 7/30/2018
12.1.10 1,093 7/20/2018
12.1.9 1,134 7/10/2018
12.1.8 1,033 7/2/2018
12.1.7 1,195 6/7/2018
12.1.6 1,159 6/4/2018
12.1.5 1,138 6/2/2018
12.1.4 1,207 5/25/2018
12.1.3 1,246 5/16/2018
12.1.2 1,090 5/15/2018
12.1.1 1,221 5/14/2018
12.1.0 1,343 5/9/2018
12.0.7 1,259 5/5/2018
12.0.6 1,257 5/4/2018
12.0.5 1,205 5/3/2018
12.0.4 1,192 4/30/2018
12.0.3 1,237 4/30/2018
12.0.2 1,145 4/27/2018
12.0.1 1,221 4/25/2018
12.0.0 1,138 4/22/2018
11.2.0 1,118 4/11/2018
11.1.0 1,205 4/8/2018
11.0.8 1,181 3/26/2018
11.0.7 1,175 3/20/2018
11.0.6 1,171 3/7/2018
11.0.5 1,114 2/22/2018
11.0.4 1,225 2/14/2018
11.0.3 1,152 2/12/2018
11.0.2 1,145 2/9/2018
11.0.1 1,105 1/29/2018
11.0.0 1,147 1/15/2018
10.0.3 1,096 12/29/2017
10.0.2 1,146 12/26/2017
10.0.1 1,161 12/18/2017
10.0.0 1,065 12/18/2017
9.3.0 1,179 12/17/2017
9.2.0 1,138 12/17/2017
9.1.3 1,163 12/5/2017
9.1.2 1,124 11/27/2017
9.1.1 1,135 11/21/2017
9.1.0 1,094 11/21/2017
9.0.1 1,092 11/11/2017
9.0.0 1,139 11/10/2017
8.7.0 1,153 11/9/2017
8.6.0 1,147 11/9/2017
8.5.0 1,162 10/3/2017
8.4.0 1,247 10/3/2017