Files
sthen fcba65a9a0 update to timescaledb-2.26.2, from Mark Patruck, looks good to maintainer
(this is the version that was tested with the zabbix update that went in
a few days ago)
2026-04-14 15:38:07 +00:00
..

+-----------------------------------------------------------------------
| 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'

Upgrading TimescaleDB
=====================
(Perform a backup beforehand)
You will need to start psql with '-X' and execute :

        ALTER EXTENSION timescaledb UPDATE;

Executing '\dx timescaledb' should show the latest version number.

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.