Skip to content

Commit

Permalink
Update ChangeLog and version to 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Dec 26, 2022
1 parent 5a2cfaf commit 8c1146f
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
2022-12-26 - Version 3.4

This release is a maintenance release that fixes issues reported since
the past six months.

- Fix unwanted report of missing index from partition. Thanks to
Christophe Courtois for the report.
- Fix cases where detection of redundant indexes was depending on the
creation order.Thanks to Guillaume Lelarge for the report.
Move Cancelled queries report from Replication sub menu to upper level.
Thanks to Guillaume Lelarge for the report.
- Allow -k option to make pgcluu_collectd exit gracefully. Previous
behavior was to exit immediately, it now calls the HUP signal (-1).
This change is done to not interrupt the running execution of the
metrics collect, the process will die only if all SQL queries are
executed. For an immediate interrupt use the TERM (-15) signal.
- Remove all ORDER BY clause in the metrics collect queries to improve
the performances. Ordering is done when reports are generated.
- Fix collect of the pg_stat_user_indexes, pg_stat_user_tables and
corresponding io stats.
- Fix --rotate-daily spill directory. Thanks to Chistophe Courtois for
the patch.
- Fix potential use of uninitialized value when sar and pidstat files are
not present. Thanks to geostart123 for the report.
- [CGI] verify that pidstat statistics exists before trying to load them.
Thanks to geostar123 foir the report.
- [CGI] Fix wrong error message when attempt to read binary files and remove
useless code. Thanks to geostar123 for the report.
- Remove newline from indexes definition to avoid data import error when
building reports.

2022-06-02 - Version 3.3

This release is a maintenance release that fixes issues reported since
Expand Down
2 changes: 1 addition & 1 deletion pgcluu
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use POSIX qw(locale_h sys_wait_h ceil strftime);
setlocale(LC_ALL, 'C');
use Storable qw(store_fd fd_retrieve);

$VERSION = '3.3';
$VERSION = '3.4';
$PROGRAM = 'pgCluu';

# Global variables
Expand Down
2 changes: 1 addition & 1 deletion pgcluu_collectd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use constant UMASK => 0022;

$| = 1;

$VERSION = '3.3';
$VERSION = '3.4';
$PROGRAM = 'pgcluu_collectd';

$SIG{'CHLD'} = 'DEFAULT';
Expand Down

0 comments on commit 8c1146f

Please sign in to comment.