GitHub - PgHookCom/PgHook: PgHook listens to PostgreSQL logical replication events and posts changed row information as JSON to webhooks.
PgHook
PgHook streams PostgreSQL change events (logical replication via PgOutput2Json) and delivers them to a webhook.
Distributed as a small-footprint 23.17 MB container image (AOT-compiled .NET 9, Alpine).
Quick start (Docker)
To enable logical replication, add the following setting in your postgresql.conf:
wal_level = logical
# If needed increase the number of WAL senders, replication slots.
# The default is 10 for both.
max_wal_senders = 10
max_replication_slots = 10
Other necessary settings...
Read more at github.com