Skip to content

Releases: prometheus-community/postgres_exporter

v0.2.0

18 Apr 13:35
v0.2.0
Compare
Choose a tag to compare
 * Major change - use pg_settings to retrieve runtime variables. Adds >180
   new metrics and descriptions (big thanks to Matt Bostock for this work).

   Removes the following metrics:
   ```
   pg_runtime_variable_max_connections
   pg_runtime_variable_max_files_per_process
   pg_runtime_variable_max_function_args
   pg_runtime_variable_max_identifier_length
   pg_runtime_variable_max_index_keys
   pg_runtime_variable_max_locks_per_transaction
   pg_runtime_variable_max_pred_locks_per_transaction
   pg_runtime_variable_max_prepared_transactions
   pg_runtime_variable_max_standby_archive_delay_milliseconds
   pg_runtime_variable_max_standby_streaming_delay_milliseconds
   pg_runtime_variable_max_wal_senders
   ```

   They are replaced by equivalent names under `pg_settings` with the exception of
   ```
   pg_runtime_variable_max_standby_archive_delay_milliseconds
   pg_runtime_variable_max_standby_streaming_delay_milliseconds
   ```
   which are replaced with
   ```
   pg_settings_max_standby_archive_delay_seconds
   pg_settings_max_standby_streaming_delay_seconds
   ```

v0.1.2

07 Feb 10:29
v0.1.2
Compare
Choose a tag to compare
* Use a connection pool of size 1 to reduce memory churn on target database.

v0.1.1

28 Nov 15:39
v0.1.1
Compare
Choose a tag to compare
* Fix pg_stat_replication metrics not being collected due to semantic version
  filter problem.

v0.1.0

17 Nov 17:06
v0.1.0
Compare
Choose a tag to compare
* Change default port to 9187.
* Fix regressions with pg_stat_replication on older versions of Postgres.
* Add pg_static metric to store version strings as labels.
* Much more thorough testing structure.
* Move to semantic versioning for releases and docker image publications.

v0.0.1

03 Jun 13:19
v0.0.1
Compare
Choose a tag to compare
Initial release for publication.