Skip to content

Commit

Permalink
Release 0.47.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msakrejda committed Jan 12, 2023
1 parent 90db329 commit 138e49e
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 5 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog

## 0.47.0 2023-01-12

* Fix RDS log processing for large log file sections
- This fixes an issue with RDS log file chunks larger than 10MB that caused
the collector to calculate log text source offsets incorrectly and could
lead to mangled log text in the pganalyze UI and incorrect log filtering
* Warn if some log lines will be ignored
- Some verbose logging settings can lead to log lines being ignored by the
collector for performance reasons: warn about this on startup
* Improve Aiven Service ID and Project ID detection from hostname
* Fix error handling when fetching stats
- The missing checks could previously lead to incomplete snapshots, possibly
resulting in tables or indexes temporarily disappearing in pganalyze
* Fix error handling regarding reading SSL-related config values on startup
* Ignore non-Postgres URIs in environment on Heroku ([@Preovaleo](https://github.com/Preovaleo))
* Send additional Postgres table stats
- Send relpages, reltuples, relallvisible
* Send additional Postgres transaction metadata
- server level (new stats): current TXID and next MXID
- database level: age of datfrozenxid and datminmxid, also xact_commit and
xact_rollback
- table level: the age of relfrozenxid and relminmxid
* Send Citus distributed index sizes
* Add `always_collect_system_data` config option
- Also configurable with the `PGA_ALWAYS_COLLECT_SYSTEM_DATA` environment
variable
- This is useful for package-based setups which monitor the local server by a
non-local IP
* Update pg_query_go version to 2.2.0
* Install script: Detect aarch64 for Ubuntu/Debian package install


## 0.46.1 2022-10-21

* Fix Postgres 15 compatibility due to version check bug
Expand Down
4 changes: 2 additions & 2 deletions contrib/helm/pganalyze-collector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: pganalyze-collector
version: 0.46.1
appVersion: "v0.46.1"
version: 0.47.0
appVersion: "v0.47.0"
type: application
description: pganalyze statistics collector
home: https://pganalyze.com/
Expand Down
4 changes: 2 additions & 2 deletions packages/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export NAME=pganalyze-collector
export VERSION=0.46.1
export GIT_VERSION=v0.46.1
export VERSION=0.47.0
export GIT_VERSION=v0.47.0
#export GIT_VERSION=HEAD
#export GIT_VERSION=618e85ce5ed5365bc7d9d9da866fdeb73bac5a55
#export VERSION=$(shell git show -s --format=%ct.%h HEAD)
Expand Down
2 changes: 1 addition & 1 deletion util/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package util

const CollectorVersion = "0.46.1"
const CollectorVersion = "0.47.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 138e49e

Please sign in to comment.