Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'data/deprecations/16-4-postgres-exporter-per-table-stats.yml')
-rw-r--r--data/deprecations/16-4-postgres-exporter-per-table-stats.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/data/deprecations/16-4-postgres-exporter-per-table-stats.yml b/data/deprecations/16-4-postgres-exporter-per-table-stats.yml
new file mode 100644
index 00000000000..0daafcd9fb6
--- /dev/null
+++ b/data/deprecations/16-4-postgres-exporter-per-table-stats.yml
@@ -0,0 +1,13 @@
+- title: "`postgres_exporter['per_table_stats']` configuration setting"
+ announcement_milestone: "16.4" # (required) The milestone when this feature was first announced as deprecated.
+ removal_milestone: "17.0" # (required) The milestone when this feature is planned to be removed
+ breaking_change: true # (required) Change to false if this is not a breaking change.
+ reporter: clemensbeck # (required) GitLab username of the person reporting the change
+ stage: Enablement # (required) String value of the stage that the feature was created in. e.g., Growth
+ issue_url: https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/8164 # (required) Link to the deprecation issue in GitLab
+ body: | # (required) Do not modify this line, instead modify the lines below.
+ The Linux package provides custom queries for the bundled PostgreSQL exporter, which included a `per_table_stats` query controlled by `postgres_exporter['per_table_stats']`
+ configuration setting.
+
+ The PostgreSQL exporter now provides a `stat_user_tables` collector that provides the same metrics. If you had `postgres_exporter['per_table_stats']` enabled,
+ enable `postgres_exporter['flags']['collector.stat_user_tables']` instead.