Audit.NET.PostgreSql
27.0.2
See the version list below for details.
dotnet add package Audit.NET.PostgreSql --version 27.0.2
NuGet\Install-Package Audit.NET.PostgreSql -Version 27.0.2
<PackageReference Include="Audit.NET.PostgreSql" Version="27.0.2" />
paket add Audit.NET.PostgreSql --version 27.0.2
#r "nuget: Audit.NET.PostgreSql, 27.0.2"
// Install Audit.NET.PostgreSql as a Cake Addin #addin nuget:?package=Audit.NET.PostgreSql&version=27.0.2 // Install Audit.NET.PostgreSql as a Cake Tool #tool nuget:?package=Audit.NET.PostgreSql&version=27.0.2
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
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 | 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 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. |
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 | 475 | 10/28/2024 |
27.1.0 | 714 | 10/24/2024 |
27.0.3 | 8,741 | 9/25/2024 |
27.0.2 | 3,940 | 9/19/2024 |
27.0.1 | 1,453 | 9/4/2024 |
27.0.0 | 447 | 9/3/2024 |
26.0.1 | 6,751 | 8/22/2024 |
26.0.0 | 18,378 | 7/19/2024 |
25.0.7 | 21,074 | 7/4/2024 |
25.0.6 | 1,849 | 6/24/2024 |
25.0.5 | 448 | 6/18/2024 |
25.0.4 | 99,394 | 3/24/2024 |
25.0.3 | 1,192 | 3/13/2024 |
25.0.2 | 264 | 3/12/2024 |
25.0.1 | 11,428 | 2/28/2024 |
25.0.0 | 83,127 | 2/16/2024 |
24.0.1 | 1,226 | 2/12/2024 |
24.0.0 | 122 | 2/12/2024 |
23.0.0 | 88,456 | 12/14/2023 |
22.1.0 | 6,426 | 12/9/2023 |
22.0.2 | 4,162 | 12/1/2023 |
22.0.1 | 30,449 | 11/16/2023 |
22.0.0 | 420 | 11/14/2023 |
21.1.0 | 36,110 | 10/9/2023 |
21.0.4 | 15,626 | 9/15/2023 |
21.0.3 | 37,352 | 7/9/2023 |
21.0.2 | 196 | 7/6/2023 |
21.0.1 | 27,694 | 5/27/2023 |
21.0.0 | 67,503 | 4/15/2023 |
20.2.4 | 37,715 | 3/27/2023 |
20.2.3 | 125,262 | 3/17/2023 |
20.2.2 | 7,131 | 3/14/2023 |
20.2.1 | 333 | 3/11/2023 |
20.2.0 | 688 | 3/7/2023 |
20.1.6 | 59,085 | 2/23/2023 |
20.1.5 | 2,341 | 2/9/2023 |
20.1.4 | 43,322 | 1/28/2023 |
20.1.3 | 61,087 | 12/21/2022 |
20.1.2 | 3,765 | 12/14/2022 |
20.1.1 | 4,868 | 12/12/2022 |
20.1.0 | 1,911 | 12/4/2022 |
20.0.4 | 2,294 | 11/30/2022 |
20.0.3 | 5,207 | 10/28/2022 |
20.0.2 | 634 | 10/26/2022 |
20.0.1 | 2,929 | 10/21/2022 |
20.0.0 | 4,163 | 10/1/2022 |
19.4.1 | 7,644 | 9/10/2022 |
19.4.0 | 1,511 | 9/2/2022 |
19.3.0 | 2,889 | 8/23/2022 |
19.2.2 | 3,951 | 8/11/2022 |
19.2.1 | 615 | 8/6/2022 |
19.2.0 | 1,914 | 7/24/2022 |
19.1.4 | 12,219 | 5/23/2022 |
19.1.3 | 526 | 5/22/2022 |
19.1.2 | 1,460 | 5/18/2022 |
19.1.1 | 38,367 | 4/28/2022 |
19.1.0 | 54,413 | 4/10/2022 |
19.0.7 | 25,904 | 3/13/2022 |
19.0.6 | 1,261 | 3/7/2022 |
19.0.5 | 21,420 | 1/28/2022 |
19.0.4 | 1,071 | 1/23/2022 |
19.0.3 | 20,928 | 12/14/2021 |
19.0.2 | 1,666 | 12/11/2021 |
19.0.1 | 2,049 | 11/20/2021 |
19.0.0 | 2,417 | 11/11/2021 |
19.0.0-rc.net60.2 | 1,097 | 9/26/2021 |
19.0.0-rc.net60.1 | 236 | 9/16/2021 |
18.1.6 | 775,254 | 9/26/2021 |
18.1.5 | 42,036 | 9/7/2021 |
18.1.4 | 32,825 | 9/6/2021 |
18.1.3 | 5,249 | 8/19/2021 |
18.1.2 | 1,242 | 8/8/2021 |
18.1.1 | 481 | 8/5/2021 |
18.1.0 | 927 | 8/1/2021 |
18.0.1 | 512 | 7/30/2021 |
18.0.0 | 527 | 7/26/2021 |
17.0.8 | 15,748 | 7/7/2021 |
17.0.7 | 739 | 6/16/2021 |
17.0.6 | 620 | 6/5/2021 |
17.0.5 | 743 | 5/28/2021 |
17.0.4 | 3,132 | 5/4/2021 |
17.0.3 | 525 | 5/1/2021 |
17.0.2 | 8,794 | 4/22/2021 |
17.0.1 | 501 | 4/18/2021 |
17.0.0 | 983 | 3/26/2021 |
16.5.6 | 532 | 3/25/2021 |
16.5.5 | 6,510 | 3/23/2021 |
16.5.4 | 735 | 3/9/2021 |
16.5.3 | 521 | 2/26/2021 |
16.5.2 | 504 | 2/23/2021 |
16.5.1 | 3,446 | 2/21/2021 |
16.5.0 | 7,343 | 2/17/2021 |
16.4.5 | 511 | 2/15/2021 |
16.4.4 | 929 | 2/5/2021 |
16.4.3 | 515 | 1/27/2021 |
16.4.2 | 4,250 | 1/22/2021 |
16.4.1 | 561 | 1/21/2021 |
16.4.0 | 1,215 | 1/11/2021 |
16.3.3 | 570 | 1/8/2021 |
16.3.2 | 572 | 1/3/2021 |
16.3.1 | 582 | 12/31/2020 |
16.3.0 | 540 | 12/30/2020 |
16.2.1 | 4,489 | 12/27/2020 |
16.2.0 | 18,075 | 10/13/2020 |
16.1.5 | 684 | 10/4/2020 |
16.1.4 | 4,266 | 9/17/2020 |
16.1.3 | 1,715 | 9/13/2020 |
16.1.2 | 592 | 9/9/2020 |
16.1.1 | 1,162 | 9/3/2020 |
16.1.0 | 674 | 8/19/2020 |
16.0.3 | 712 | 8/15/2020 |
16.0.2 | 13,361 | 8/9/2020 |
16.0.1 | 629 | 8/8/2020 |
16.0.0 | 1,781 | 8/7/2020 |
15.3.0 | 291,284 | 7/23/2020 |
15.2.3 | 2,823 | 7/14/2020 |
15.2.2 | 50,984 | 5/19/2020 |
15.2.1 | 3,716 | 5/12/2020 |
15.2.0 | 658 | 5/9/2020 |
15.1.1 | 643 | 5/4/2020 |
15.1.0 | 2,624 | 4/13/2020 |
15.0.5 | 772 | 3/18/2020 |
15.0.4 | 691 | 2/28/2020 |
15.0.3 | 598 | 2/26/2020 |
15.0.2 | 4,823 | 1/20/2020 |
15.0.1 | 729 | 1/10/2020 |
15.0.0 | 719 | 12/17/2019 |
14.9.1 | 721 | 11/30/2019 |
14.9.0 | 672 | 11/29/2019 |
14.8.1 | 662 | 11/26/2019 |
14.8.0 | 855 | 11/20/2019 |
14.7.0 | 966 | 10/9/2019 |
14.6.6 | 679 | 10/8/2019 |
14.6.5 | 38,429 | 9/27/2019 |
14.6.4 | 630 | 9/21/2019 |
14.6.3 | 5,400 | 8/12/2019 |
14.6.2 | 785 | 8/3/2019 |
14.6.1 | 703 | 8/3/2019 |
14.6.0 | 725 | 7/26/2019 |
14.5.7 | 735 | 7/18/2019 |
14.5.6 | 1,062 | 7/10/2019 |
14.5.5 | 701 | 7/1/2019 |
14.5.4 | 698 | 6/17/2019 |
14.5.3 | 756 | 6/5/2019 |
14.5.2 | 735 | 5/30/2019 |
14.5.1 | 7,466 | 5/28/2019 |
14.5.0 | 2,786 | 5/24/2019 |
14.4.0 | 768 | 5/22/2019 |
14.3.4 | 2,211 | 5/14/2019 |
14.3.3 | 720 | 5/9/2019 |
14.3.2 | 882 | 4/30/2019 |
14.3.1 | 752 | 4/27/2019 |
14.3.0 | 5,562 | 4/24/2019 |
14.2.3 | 865 | 4/17/2019 |
14.2.2 | 736 | 4/10/2019 |
14.2.1 | 15,993 | 4/5/2019 |
14.2.0 | 766 | 3/16/2019 |
14.1.1 | 752 | 3/8/2019 |
14.1.0 | 2,078 | 2/11/2019 |
14.0.4 | 2,766 | 1/31/2019 |
14.0.3 | 5,874 | 1/22/2019 |
14.0.2 | 1,410 | 12/15/2018 |
14.0.1 | 899 | 11/29/2018 |
14.0.0 | 913 | 11/19/2018 |
13.3.0 | 950 | 11/16/2018 |
13.2.2 | 912 | 11/15/2018 |
13.2.1 | 2,868 | 11/13/2018 |
13.2.0 | 999 | 10/31/2018 |
13.1.5 | 925 | 10/31/2018 |
13.1.4 | 954 | 10/25/2018 |
13.1.3 | 941 | 10/18/2018 |
13.1.2 | 1,101 | 9/12/2018 |
13.1.1 | 989 | 9/11/2018 |
13.1.0 | 980 | 9/11/2018 |
13.0.0 | 1,046 | 8/29/2018 |
12.3.6 | 1,017 | 8/29/2018 |
12.3.5 | 1,037 | 8/22/2018 |
12.3.4 | 1,426 | 8/21/2018 |
12.3.3 | 25,791 | 8/21/2018 |
12.3.2 | 1,036 | 8/20/2018 |
12.3.1 | 1,042 | 8/20/2018 |
12.3.0 | 1,040 | 8/20/2018 |
12.2.2 | 1,079 | 8/15/2018 |
12.2.1 | 1,060 | 8/9/2018 |
12.2.0 | 995 | 8/8/2018 |
12.1.11 | 1,013 | 7/30/2018 |
12.1.10 | 1,092 | 7/20/2018 |
12.1.9 | 1,133 | 7/10/2018 |
12.1.8 | 1,032 | 7/2/2018 |
12.1.7 | 1,194 | 6/7/2018 |
12.1.6 | 1,158 | 6/4/2018 |
12.1.5 | 1,137 | 6/2/2018 |
12.1.4 | 1,206 | 5/25/2018 |
12.1.3 | 1,245 | 5/16/2018 |
12.1.2 | 1,089 | 5/15/2018 |
12.1.1 | 1,219 | 5/14/2018 |
12.1.0 | 1,342 | 5/9/2018 |
12.0.7 | 1,256 | 5/5/2018 |
12.0.6 | 1,256 | 5/4/2018 |
12.0.5 | 1,204 | 5/3/2018 |
12.0.4 | 1,191 | 4/30/2018 |
12.0.3 | 1,236 | 4/30/2018 |
12.0.2 | 1,144 | 4/27/2018 |
12.0.1 | 1,220 | 4/25/2018 |
12.0.0 | 1,137 | 4/22/2018 |
11.2.0 | 1,116 | 4/11/2018 |
11.1.0 | 1,204 | 4/8/2018 |
11.0.8 | 1,180 | 3/26/2018 |
11.0.7 | 1,172 | 3/20/2018 |
11.0.6 | 1,170 | 3/7/2018 |
11.0.5 | 1,112 | 2/22/2018 |
11.0.4 | 1,222 | 2/14/2018 |
11.0.3 | 1,151 | 2/12/2018 |
11.0.2 | 1,142 | 2/9/2018 |
11.0.1 | 1,104 | 1/29/2018 |
11.0.0 | 1,146 | 1/15/2018 |
10.0.3 | 1,095 | 12/29/2017 |
10.0.2 | 1,145 | 12/26/2017 |
10.0.1 | 1,160 | 12/18/2017 |
10.0.0 | 1,064 | 12/18/2017 |
9.3.0 | 1,178 | 12/17/2017 |
9.2.0 | 1,137 | 12/17/2017 |
9.1.3 | 1,162 | 12/5/2017 |
9.1.2 | 1,121 | 11/27/2017 |
9.1.1 | 1,134 | 11/21/2017 |
9.1.0 | 1,093 | 11/21/2017 |
9.0.1 | 1,091 | 11/11/2017 |
9.0.0 | 1,138 | 11/10/2017 |
8.7.0 | 1,152 | 11/9/2017 |
8.6.0 | 1,144 | 11/9/2017 |
8.5.0 | 1,161 | 10/3/2017 |
8.4.0 | 1,244 | 10/3/2017 |