Audit.NET.PostgreSql 27.0.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.0.0                
NuGet\Install-Package Audit.NET.PostgreSql -Version 27.0.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.0.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.0.0                
#r "nuget: Audit.NET.PostgreSql, 27.0.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.0.0

// Install Audit.NET.PostgreSql as a Cake Tool
#tool nuget:?package=Audit.NET.PostgreSql&version=27.0.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. 
.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.2.0 359 11/23/2024
27.1.1 9,350 10/28/2024
27.1.0 849 10/24/2024
27.0.3 10,627 9/25/2024
27.0.2 4,363 9/19/2024
27.0.1 1,624 9/4/2024
27.0.0 485 9/3/2024
26.0.1 7,877 8/22/2024
26.0.0 18,518 7/19/2024
25.0.7 24,242 7/4/2024
25.0.6 2,109 6/24/2024
25.0.5 454 6/18/2024
25.0.4 106,003 3/24/2024
25.0.3 1,201 3/13/2024
25.0.2 267 3/12/2024
25.0.1 11,621 2/28/2024
25.0.0 90,039 2/16/2024
24.0.1 1,242 2/12/2024
24.0.0 125 2/12/2024
23.0.0 94,836 12/14/2023
22.1.0 7,277 12/9/2023
22.0.2 4,167 12/1/2023
22.0.1 30,488 11/16/2023
22.0.0 426 11/14/2023
21.1.0 36,368 10/9/2023
21.0.4 15,856 9/15/2023
21.0.3 37,432 7/9/2023
21.0.2 201 7/6/2023
21.0.1 28,376 5/27/2023
21.0.0 67,516 4/15/2023
20.2.4 37,767 3/27/2023
20.2.3 125,265 3/17/2023
20.2.2 7,136 3/14/2023
20.2.1 337 3/11/2023
20.2.0 693 3/7/2023
20.1.6 59,445 2/23/2023
20.1.5 2,344 2/9/2023
20.1.4 43,332 1/28/2023
20.1.3 61,147 12/21/2022
20.1.2 3,835 12/14/2022
20.1.1 5,313 12/12/2022
20.1.0 1,916 12/4/2022
20.0.4 2,297 11/30/2022
20.0.3 5,243 10/28/2022
20.0.2 637 10/26/2022
20.0.1 2,976 10/21/2022
20.0.0 4,194 10/1/2022
19.4.1 7,732 9/10/2022
19.4.0 1,517 9/2/2022
19.3.0 2,898 8/23/2022
19.2.2 4,013 8/11/2022
19.2.1 618 8/6/2022
19.2.0 1,917 7/24/2022
19.1.4 12,268 5/23/2022
19.1.3 529 5/22/2022
19.1.2 1,463 5/18/2022
19.1.1 38,372 4/28/2022
19.1.0 54,561 4/10/2022
19.0.7 26,053 3/13/2022
19.0.6 1,267 3/7/2022
19.0.5 21,815 1/28/2022
19.0.4 1,075 1/23/2022
19.0.3 21,021 12/14/2021
19.0.2 1,670 12/11/2021
19.0.1 2,060 11/20/2021
19.0.0 2,420 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 776,751 9/26/2021
18.1.5 42,040 9/7/2021
18.1.4 32,828 9/6/2021
18.1.3 5,254 8/19/2021
18.1.2 1,245 8/8/2021
18.1.1 484 8/5/2021
18.1.0 930 8/1/2021
18.0.1 515 7/30/2021
18.0.0 530 7/26/2021
17.0.8 15,852 7/7/2021
17.0.7 743 6/16/2021
17.0.6 624 6/5/2021
17.0.5 746 5/28/2021
17.0.4 3,137 5/4/2021
17.0.3 529 5/1/2021
17.0.2 8,813 4/22/2021
17.0.1 504 4/18/2021
17.0.0 988 3/26/2021
16.5.6 535 3/25/2021
16.5.5 6,513 3/23/2021
16.5.4 738 3/9/2021
16.5.3 525 2/26/2021
16.5.2 507 2/23/2021
16.5.1 3,449 2/21/2021
16.5.0 7,347 2/17/2021
16.4.5 514 2/15/2021
16.4.4 932 2/5/2021
16.4.3 518 1/27/2021
16.4.2 4,294 1/22/2021
16.4.1 564 1/21/2021
16.4.0 1,219 1/11/2021
16.3.3 573 1/8/2021
16.3.2 576 1/3/2021
16.3.1 585 12/31/2020
16.3.0 543 12/30/2020
16.2.1 4,625 12/27/2020
16.2.0 18,080 10/13/2020
16.1.5 687 10/4/2020
16.1.4 4,445 9/17/2020
16.1.3 1,718 9/13/2020
16.1.2 595 9/9/2020
16.1.1 1,165 9/3/2020
16.1.0 678 8/19/2020
16.0.3 715 8/15/2020
16.0.2 13,364 8/9/2020
16.0.1 632 8/8/2020
16.0.0 1,784 8/7/2020
15.3.0 291,305 7/23/2020
15.2.3 2,827 7/14/2020
15.2.2 51,004 5/19/2020
15.2.1 3,719 5/12/2020
15.2.0 661 5/9/2020
15.1.1 646 5/4/2020
15.1.0 2,710 4/13/2020
15.0.5 776 3/18/2020
15.0.4 694 2/28/2020
15.0.3 602 2/26/2020
15.0.2 4,844 1/20/2020
15.0.1 732 1/10/2020
15.0.0 722 12/17/2019
14.9.1 724 11/30/2019
14.9.0 675 11/29/2019
14.8.1 665 11/26/2019
14.8.0 858 11/20/2019
14.7.0 969 10/9/2019
14.6.6 682 10/8/2019
14.6.5 38,714 9/27/2019
14.6.4 634 9/21/2019
14.6.3 5,403 8/12/2019
14.6.2 789 8/3/2019
14.6.1 707 8/3/2019
14.6.0 728 7/26/2019
14.5.7 739 7/18/2019
14.5.6 1,065 7/10/2019
14.5.5 704 7/1/2019
14.5.4 701 6/17/2019
14.5.3 760 6/5/2019
14.5.2 738 5/30/2019
14.5.1 7,469 5/28/2019
14.5.0 2,922 5/24/2019
14.4.0 771 5/22/2019
14.3.4 2,214 5/14/2019
14.3.3 723 5/9/2019
14.3.2 885 4/30/2019
14.3.1 755 4/27/2019
14.3.0 5,570 4/24/2019
14.2.3 868 4/17/2019
14.2.2 739 4/10/2019
14.2.1 15,998 4/5/2019
14.2.0 769 3/16/2019
14.1.1 755 3/8/2019
14.1.0 2,082 2/11/2019
14.0.4 2,771 1/31/2019
14.0.3 5,879 1/22/2019
14.0.2 1,415 12/15/2018
14.0.1 904 11/29/2018
14.0.0 920 11/19/2018
13.3.0 955 11/16/2018
13.2.2 917 11/15/2018
13.2.1 2,873 11/13/2018
13.2.0 1,005 10/31/2018
13.1.5 928 10/31/2018
13.1.4 959 10/25/2018
13.1.3 947 10/18/2018
13.1.2 1,107 9/12/2018
13.1.1 995 9/11/2018
13.1.0 986 9/11/2018
13.0.0 1,053 8/29/2018
12.3.6 1,024 8/29/2018
12.3.5 1,044 8/22/2018
12.3.4 1,433 8/21/2018
12.3.3 25,797 8/21/2018
12.3.2 1,042 8/20/2018
12.3.1 1,048 8/20/2018
12.3.0 1,046 8/20/2018
12.2.2 1,085 8/15/2018
12.2.1 1,067 8/9/2018
12.2.0 1,001 8/8/2018
12.1.11 1,018 7/30/2018
12.1.10 1,097 7/20/2018
12.1.9 1,138 7/10/2018
12.1.8 1,037 7/2/2018
12.1.7 1,199 6/7/2018
12.1.6 1,165 6/4/2018
12.1.5 1,142 6/2/2018
12.1.4 1,211 5/25/2018
12.1.3 1,250 5/16/2018
12.1.2 1,094 5/15/2018
12.1.1 1,225 5/14/2018
12.1.0 1,347 5/9/2018
12.0.7 1,263 5/5/2018
12.0.6 1,261 5/4/2018
12.0.5 1,209 5/3/2018
12.0.4 1,196 4/30/2018
12.0.3 1,243 4/30/2018
12.0.2 1,149 4/27/2018
12.0.1 1,225 4/25/2018
12.0.0 1,142 4/22/2018
11.2.0 1,122 4/11/2018
11.1.0 1,209 4/8/2018
11.0.8 1,185 3/26/2018
11.0.7 1,179 3/20/2018
11.0.6 1,175 3/7/2018
11.0.5 1,118 2/22/2018
11.0.4 1,229 2/14/2018
11.0.3 1,156 2/12/2018
11.0.2 1,149 2/9/2018
11.0.1 1,109 1/29/2018
11.0.0 1,151 1/15/2018
10.0.3 1,102 12/29/2017
10.0.2 1,150 12/26/2017
10.0.1 1,165 12/18/2017
10.0.0 1,071 12/18/2017
9.3.0 1,185 12/17/2017
9.2.0 1,142 12/17/2017
9.1.3 1,167 12/5/2017
9.1.2 1,128 11/27/2017
9.1.1 1,139 11/21/2017
9.1.0 1,098 11/21/2017
9.0.1 1,096 11/11/2017
9.0.0 1,143 11/10/2017
8.7.0 1,157 11/9/2017
8.6.0 1,151 11/9/2017
8.5.0 1,166 10/3/2017
8.4.0 1,254 10/3/2017