Skip to content

Commit

Permalink
Release 0.57.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko713 committed Jun 19, 2024
1 parent 41f40ba commit 5fa976f
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.57.0 2024-06-19

* Log Insights: Add support for receiving logs via OpenTelemetry
- The collector can now start a built-in OTLP HTTP server that receives logs
at a specified local address via `db_log_otel_server` / `LOG_OTEL_SERVER`
- This can be used with self-managed servers running in a Kubernetes cluster,
combined with a telemetry agent like Fluent Bit
* Exclude internal Postgres tables from stats helper functions
- With Amazon RDS/Aurora, stats collection could fail with "permission denied
for attribute pg_subscription.subconninfo"
- Update stats helper functions to explicitly exclude references causing this
issue
* Log Insights: Improve parsing with Heroku auto_explain logs
- With auto_explain logs of Heroku Postgres, new lines in the middle of the
EXPLAIN query are observed, which has been preventing the log parser from
correctly handling these EXPLAIN queries
- Add a workaround to mitigate this issue when such unexpected new lines are
detected
* Add packages for Ubuntu 24.04
* Remove "report" functionality
- This has long been deprecated. Removing the code as a cleanup


## 0.56.0 2024-04-19

* Improve the collector test output
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.56.0
appVersion: "v0.56.0"
version: 0.57.0
appVersion: "v0.57.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.56.0
export VERSION ?= 0.57.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.56.0"
const CollectorVersion = "0.57.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 5fa976f

Please sign in to comment.