Skip to content

Commit

Permalink
Release 0.55.0 (#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Mar 28, 2024
1 parent 778e681 commit 30888b7
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## 0.55.0 2024-03-27

* Add integration with Tembo
- Supports Log Insights (via log streaming) and system metrics download
- This integration is mainly intended for direct use by the Tembo Postgres
provider (the collector is deployed by Tembo, if enabled)
* Heroku integration
- Avoid unnecessary error messages related to state file and reload mechanism
* Accept PGA_API_BASE_URL env var in addition to PGA_API_BASEURL
- Going forward we recommend using `PGA_API_BASE_URL` when configuring the
collector for sending to pganalyze Enterprise Server installations
* Syslog handler: Allow leading spaces before parts regexp
- When configuring rsyslogd for RFC5424 output with the
RSYSLOG_SyslogProtocol23Format template, it adds a leading space that we
didn't anticipate correctly.
* Relation stats: Call pg_stat_get_* directly instead of using system views
- The collecror now calls the underlying pg_stat_get* functions directly,
which has the same effect as querying the pg_stat_all_tables and
pg_statio_all_tables views (as they are simple views without any security
barrier), but results in better performance when a table filter
(`ignore_schema_regexp` / `IGNORE_SCHEMA_REGEXP`) is active


## 0.54.0 2024-02-23

* Update pg_query_go to v5 / Postgres 16 parser
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.54.0
appVersion: "v0.54.0"
version: 0.55.0
appVersion: "v0.55.0"
type: application
description: pganalyze statistics collector
home: https://pganalyze.com/
Expand Down
2 changes: 1 addition & 1 deletion packages/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export NAME ?= pganalyze-collector
export VERSION ?= 0.54.0
export VERSION ?= 0.55.0
export GIT_VERSION ?= v$(VERSION)
#export GIT_VERSION=HEAD
#export GIT_VERSION=618e85ce5ed5365bc7d9d9da866fdeb73bac5a55
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.54.0"
const CollectorVersion = "0.55.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 30888b7

Please sign in to comment.