denis 24f9b9c260 Update to v2.2.0
Tested by Mark Patruck (mark at wrapped cx)

OK tb@, rsadowski@
2021-04-25 06:03:49 +00:00
..
2021-04-25 06:03:49 +00:00

$OpenBSD: README,v 1.2 2021/04/24 17:54:50 denis Exp $

+-----------------------------------------------------------------------
| Running ${PKGSTEM} on OpenBSD
+-----------------------------------------------------------------------

Enabling TimescaleDB
====================
You will need to edit your postgresql.conf file to include the TimescaleDB
library, and then restart PostgreSQL.

        shared_preload_libraries = 'timescaledb'

Telemetry
=========
TimescaleDB telemetry and version checking is disabled by default.

To turn on telemetry for a whole instance, simply include the following line
in your postgresql.conf file:

        timescaledb.telemetry_level=basic

Alternatively, you can enable it from psql:

        ALTER [SYSTEM | DATABASE | USER] { *db_name* | *role_specification* }
            SET timescaledb.telemetry_level=basic;

Then reload the configuration.

To disable it again at a later time, replace 'basic' with 'off' in the above.