Skip to content

Commit db08eee

Browse files
committed
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>
1 parent 5db7cfb commit db08eee

File tree

3 files changed

+53
-8
lines changed

3 files changed

+53
-8
lines changed

CHANGELOG.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
## master / unreleased
1+
## 0.13.0 / 2023-06-21
2+
3+
BREAKING CHANGES:
4+
5+
Please note, the following features are deprecated and may be removed in a future release:
6+
- `auto-discover-databases`
7+
- `extend.query-path`
8+
- `constantLabels`
9+
- `exclude-databases`
10+
- `include-databases`
11+
12+
This exporter is meant to monitor PostgresSQL servers, not the user data/databases. If
13+
you need a generic SQL report exporter https://github.com/burningalchemist/sql_exporter
14+
is recommended.
15+
16+
* [CHANGE] Adjust log level for collector startup #784
17+
* [CHANGE] Move queries from queries.yaml to collectors #801
18+
* [CHANGE] Deprecate extend queries feature #811
19+
* [CHANGE] Deprecate additional database features #815
20+
* [CHANGE] Convert pg_stat_database to new collector #685
21+
* [ENHANCEMENT] Supports alternate postgres:// prefix in URLs #787
22+
* [BUGFIX] Fix pg_setting different help values #771
23+
* [BUGFIX] Fix column type for pg_replication_slots #777
24+
* [BUGFIX] Fix pg_stat_database collector #809
225

326
## 0.12.1 / 2023-06-12
427
* [BUGFIX] Fix column type for pg_replication_slots #777

README.md

+28-6
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,36 @@ This will build the docker image as `prometheuscommunity/postgres_exporter:${bra
7171
* `help`
7272
Show context-sensitive help (also try --help-long and --help-man).
7373

74-
* `collector.database`
75-
Enable the pg_database collector. Default is `enabled`
7674

77-
* `collector.bgwriter`
78-
Enable the pg_stat_bgwriter collector. Default is `enabled`
75+
* `[no-]collector.database`
76+
Enable the database collector (default: enabled).
7977

80-
* `collector.replication_slot`
81-
Enable the replication_slot collector. Default is `enabled`
78+
* `[no-]collector.postmaster`
79+
Enable the `postmaster` collector (default: enabled).
80+
81+
* `[no-]collector.process_idle`
82+
Enable the `process_idle` collector (default: enabled).
83+
84+
* `[no-]collector.replication`
85+
Enable the `replication` collector (default: enabled).
86+
87+
* `[no-]collector.replication_slot`
88+
Enable the `replication_slot` collector (default: enabled).
89+
90+
* `[no-]collector.stat_bgwriter`
91+
Enable the `stat_bgwriter` collector (default: enabled).
92+
93+
* `[no-]collector.stat_database`
94+
Enable the `stat_database` collector (default: enabled).
95+
96+
* `[no-]collector.statio_user_tables`
97+
Enable the `statio_user_tables` collector (default: enabled).
98+
99+
* `[no-]collector.stat_statements`
100+
Enable the `stat_statements` collector (default: disabled).
101+
102+
* `[no-]collector.stat_user_tables`
103+
Enable the `stat_user_tables` collector (default: enabled).
82104

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

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.1
1+
0.13.0

0 commit comments

Comments
 (0)