Release v0.13.0
BREAKING CHANGES: Please note, the following features are deprecated and may be removed in a future release: - `auto-discover-databases` - `extend.query-path` - `constantLabels` - `exclude-databases` - `include-databases` This exporter is meant to monitor PostgresSQL servers, not the user data/databases. If you need a generic SQL report exporter https://github.com/burningalchemist/sql_exporter is recommended. * [CHANGE] Adjust log level for collector startup #784 * [CHANGE] Move queries from queries.yaml to collectors #801 * [CHANGE] Deprecate extend queries feature #811 * [CHANGE] Deprecate additional database features #815 * [CHANGE] Convert pg_stat_database to new collector #685 * [ENHANCEMENT] Supports alternate postgres:// prefix in URLs #787 * [BUGFIX] Fix pg_setting different help values #771 * [BUGFIX] Fix column type for pg_replication_slots #777 * [BUGFIX] Fix pg_stat_database collector #809 Signed-off-by: SuperQ <superq@gmail.com>
This commit is contained in:
parent
5db7cfba22
commit
db08eee988
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -1,4 +1,27 @@
|
|||
## master / unreleased
|
||||
## 0.13.0 / 2023-06-21
|
||||
|
||||
BREAKING CHANGES:
|
||||
|
||||
Please note, the following features are deprecated and may be removed in a future release:
|
||||
- `auto-discover-databases`
|
||||
- `extend.query-path`
|
||||
- `constantLabels`
|
||||
- `exclude-databases`
|
||||
- `include-databases`
|
||||
|
||||
This exporter is meant to monitor PostgresSQL servers, not the user data/databases. If
|
||||
you need a generic SQL report exporter https://github.com/burningalchemist/sql_exporter
|
||||
is recommended.
|
||||
|
||||
* [CHANGE] Adjust log level for collector startup #784
|
||||
* [CHANGE] Move queries from queries.yaml to collectors #801
|
||||
* [CHANGE] Deprecate extend queries feature #811
|
||||
* [CHANGE] Deprecate additional database features #815
|
||||
* [CHANGE] Convert pg_stat_database to new collector #685
|
||||
* [ENHANCEMENT] Supports alternate postgres:// prefix in URLs #787
|
||||
* [BUGFIX] Fix pg_setting different help values #771
|
||||
* [BUGFIX] Fix column type for pg_replication_slots #777
|
||||
* [BUGFIX] Fix pg_stat_database collector #809
|
||||
|
||||
## 0.12.1 / 2023-06-12
|
||||
* [BUGFIX] Fix column type for pg_replication_slots #777
|
||||
|
|
34
README.md
34
README.md
|
@ -71,14 +71,36 @@ This will build the docker image as `prometheuscommunity/postgres_exporter:${bra
|
|||
* `help`
|
||||
Show context-sensitive help (also try --help-long and --help-man).
|
||||
|
||||
* `collector.database`
|
||||
Enable the pg_database collector. Default is `enabled`
|
||||
|
||||
* `collector.bgwriter`
|
||||
Enable the pg_stat_bgwriter collector. Default is `enabled`
|
||||
* `[no-]collector.database`
|
||||
Enable the database collector (default: enabled).
|
||||
|
||||
* `collector.replication_slot`
|
||||
Enable the replication_slot collector. Default is `enabled`
|
||||
* `[no-]collector.postmaster`
|
||||
Enable the `postmaster` collector (default: enabled).
|
||||
|
||||
* `[no-]collector.process_idle`
|
||||
Enable the `process_idle` collector (default: enabled).
|
||||
|
||||
* `[no-]collector.replication`
|
||||
Enable the `replication` collector (default: enabled).
|
||||
|
||||
* `[no-]collector.replication_slot`
|
||||
Enable the `replication_slot` collector (default: enabled).
|
||||
|
||||
* `[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).
|
||||
|
||||
* `config.file`
|
||||
Set the config file path. Default is `postgres_exporter.yml`
|
||||
|
|
Loading…
Reference in New Issue