Skip to content

Commit

Permalink
Release 0.52.3
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko713 committed Nov 30, 2023
1 parent 5eede28 commit d307869
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 0.52.3 2023-11-30

* Update the snapshot submission log format
- Previously, compact (activity and log) snapshots submission log were emitted
every time it's completed. This was causing lots of log lines as an activity
snapshot submission happens every 10 seconds
- With this update, we group the log and only emit once per minute
* OpenTelemetry integration:
- Support `pganalyze` tracestate to set start time of the span
- Start time can be specified with `t` member key, the Unix time in second,
allowing decimals to present up to nano seconds
- This allows to specify a better span start and end time in case the accurate
time is unable to be obtained through the log, like RDS
* Allow pg_stat_statements failures and continue snapshot processing
- Previously, when pg_stat_statements data collection was failing (e.g. a
timeout when the query text file got too large), the whole snapshot was
treated as failed and only reporting an error snapshot to pganalyze, without
any statistics
- Instead, treating pg_stat_statements errors as a collector error in the
snapshot, but continuing afterwards and report other statistics that were
collected successfully

## 0.52.2 2023-10-26

* OpenTelemetry integration:
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.52.2
appVersion: "v0.52.2"
version: 0.52.3
appVersion: "v0.52.3"
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.52.2
export VERSION ?= 0.52.3
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.52.2"
const CollectorVersion = "0.52.3"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit d307869

Please sign in to comment.