Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rjuju/pg_track_settings
Small extension to keep track of postgresql settings modification
https://github.com/rjuju/pg_track_settings
extension monitoring postgresql
Last synced: 7 days ago
JSON representation
Small extension to keep track of postgresql settings modification
- Host: GitHub
- URL: https://github.com/rjuju/pg_track_settings
- Owner: rjuju
- License: postgresql
- Created: 2015-01-25T00:30:56.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-22T09:41:44.000Z (5 months ago)
- Last Synced: 2024-10-16T13:15:56.655Z (23 days ago)
- Topics: extension, monitoring, postgresql
- Language: PLpgSQL
- Size: 67.4 KB
- Stars: 50
- Watchers: 6
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
pg_track_settings
=================pg_track_settings is a small extension that helps you keep track of
postgresql settings configuration.It provides a function (**pg_track_settings_snapshot()**), that must be called
regularly. At each call, it will store the settings that have been changed
since last call. It will also track the postgresql start time if it's different
from the last one.This extension tracks both overall settings (the **pg_settings** view) and
overloaded settings (the **pg_db_role_setting** table).Usage
------ Create the extension in any database:
CREATE EXTENSION pg_track_settings;
Then make sure the **pg_track_settings_snapshot()** function called. Cron or
PoWA can be used for that.Functions
---------- `pg_track_settings_snapshot()`: collect the current settings value.
- `pg_track_settings(timestamptz)`: return all settings at the specified timestamp. Current time is used if no timestamped specified.
- `pg_track_settings_diff(timestamptz, timestamptz)`: return all settings that have changed between the two specified timestamps.
- `pg_track_settings_log(text)`: return the history of a specific setting.
- `pg_track_db_role_settings(timestamptz)`: return all overloaded settings at the specified timestamp. Current time is used if no timestamped specified.
- `pg_track_db_role_settings_diff(timestamptz, timestamptz)`: return all overloaded settings that have changed between the two specified timestamps.
- `pg_track_db_role_settings_log(text)`: return the history of a specific overloaded setting.Example
-------
Call a first time the snapshot function to get the initial values:postgres=# select pg_track_settings_snapshot()
----------------------------
t
(1 row)A first snapshot is now taken:
postgres=# select DISTINCT ts FROM pg_track_settings_history ;
ts
-------------------------------
2015-01-25 01:00:37.449846+01
(1 row)Let's assume the configuration changed, and reload the conf:
postgres=# select pg_reload_conf();
pg_reload_conf
----------------
t
(1 row)Call again the snapshot function:
postgres=# select * from pg_track_settings_snapshot();
pg_track_settings_snapshot
----------------------------
t
(1 row)Now, we can check what settings changed:
postgres=# SELECT * FROM pg_track_settings_diff(now() - interval '2 minutes', now());
name | from_setting | from_exists | to_setting | to_exists
---------------------+--------------|-------------|------------|----------
checkpoint_segments | 30 | t | 35 | t
(1 row)And the detailed history of this setting:
postgres=# SELECT * FROM pg_track_settings_log('checkpoint_segments');
ts | name | setting_exists | setting
-------------------------------+---------------------+----------------+---------
2015-01-25 01:01:42.581682+01 | checkpoint_segments | t | 35
2015-01-25 01:00:37.449846+01 | checkpoint_segments | t | 30
(2 rows)And you can retrieve all the PostgreSQL configuration at a specific timestamp:
postgres=# SELECT * FROM pg_track_settings('2015-01-25 01:01:00');
name | setting
------------------------------+---------
[...]
checkpoint_completion_target | 0.9
checkpoint_segments | 30
checkpoint_timeout | 300
[...]The same functions are provided for per role and/or database settings (
**ALTER ROLE ... SET**, **ALTER ROLE ... IN DATABASE ... SET** and
**ALTER DATABASE ... SET** commands):- pg\_track\_db\_role\_settings\_diff()
- pg\_track\_db\_role\_settings\_log()
- pg\_track\_db\_role\_settings()We also have the history of postgres start time:
postgres=# SELECT * FROM pg_reboot;
ts
-------------------------------
2015-01-25 00:39:43.609195+01
(1 row)Please also note that all the history will be saved in a pg\_dump / pg\_dumpall
backup. If you need the clear this history, the function
**pg\_track\_settings\_reset()** will do that for you.