Skip to content

Commit

Permalink
Add changelog for v0.14 (#906)
Browse files Browse the repository at this point in the history
* Add changelog for v0.14

- Add changelog entries since v0.13.2
- Update README with new options
- Bump version file

Signed-off-by: Joe Adams <[email protected]>

* Add changelog entry for #904

Signed-off-by: Joe Adams <[email protected]>

---------

Signed-off-by: Joe Adams <[email protected]>
  • Loading branch information
sysadmind authored Sep 20, 2023
1 parent add5b86 commit c06e57d
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 5 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.14.0 / 2023-09-11

* [CHANGE] Add `state` label to pg_process_idle_seconds #862
* [CHANGE] Change database connections to one per scrape #882 #902
* [ENHANCEMENT] Add wal collector #858
* [ENHANCEMENT] Add database_wraparound collector #834
* [ENHANCEMENT] Add stat_activity_autovacuum collector #840
* [ENHANCEMENT] Add stat_wal_receiver collector #844
* [ENHANCEMENT] Add xlog_location collector #849
* [ENHANCEMENT] Add statio_user_indexes collector #845
* [ENHANCEMENT] Add long_running_transactions collector #836
* [ENHANCEMENT] Add pg_stat_user_tables_size_bytes metric #904
* [BUGFIX] Fix tests on 32-bit systems #857
* [BUGFIX] Fix pg_stat_statements metrics on Postgres 13+ #874 #876
* [BUGFIX] Fix pg_stat_database metrics for NULL stats_reset #877
* [BUGFIX] Fix pg_replication_lag_seconds on Postgres 10+ when master is idle #895

## 0.13.2 / 2023-07-21

* [BUGFIX] Fix type issues on pg_postmaster metrics #828
Expand Down
29 changes: 25 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,17 @@ This will build the docker image as `prometheuscommunity/postgres_exporter:${bra
* `[no-]collector.database`
Enable the `database` collector (default: enabled).

* `[no-]collector.database_wraparound`
Enable the `database_wraparound` collector (default: disabled).

* `[no-]collector.locks`
Enable the `locks` collector (default: enabled).

* `[no-]collector.long_running_transactions`
Enable the `long_running_transactions` collector (default: disabled).

* `[no-]collector.postmaster`
Enable the `postmaster` collector (default: enabled).
Enable the `postmaster` collector (default: disabled).

* `[no-]collector.process_idle`
Enable the `process_idle` collector (default: disabled).
Expand All @@ -110,21 +116,36 @@ This will build the docker image as `prometheuscommunity/postgres_exporter:${bra
* `[no-]collector.replication_slot`
Enable the `replication_slot` collector (default: enabled).

* `[no-]collector.stat_activity_autovacuum`
Enable the `stat_activity_autovacuum` collector (default: disabled).

* `[no-]collector.stat_bgwriter`
Enable the `stat_bgwriter` collector (default: enabled).

* `[no-]collector.stat_database`
Enable the `stat_database` collector (default: enabled).

* `[no-]collector.statio_user_tables`
Enable the `statio_user_tables` collector (default: enabled).

* `[no-]collector.stat_statements`
Enable the `stat_statements` collector (default: disabled).

* `[no-]collector.stat_user_tables`
Enable the `stat_user_tables` collector (default: enabled).

* `[no-]collector.stat_wal_receiver`
Enable the `stat_wal_receiver` collector (default: disabled).

* `[no-]collector.statio_user_indexes`
Enable the `statio_user_indexes` collector (default: disabled).

* `[no-]collector.statio_user_tables`
Enable the `statio_user_tables` collector (default: enabled).

* `[no-]collector.wal`
Enable the `wal` collector (default: enabled).

* `[no-]collector.xlog_location`
Enable the `xlog_location` collector (default: disabled).

* `config.file`
Set the config file path. Default is `postgres_exporter.yml`

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.13.1
0.14.0

0 comments on commit c06e57d

Please sign in to comment.