Skip to content

Commit 5375a83

Browse files
author
alexander popov
committed
build: 2.4.5
- added checksum_failures metric in Instance plugin for Postgresql 12 - changed PG version support in commands: mamonsu export zabbix-parameters mamonsu export zabbix-template mamonsu export template <file> mamonsu export zabbix-template - update help message for 'mamonsu export'
1 parent ec701b4 commit 5375a83

File tree

6 files changed

+43
-5
lines changed

6 files changed

+43
-5
lines changed

mamonsu/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__author__ = 'Dmitry Vasilyev'
22
__author_email__ = '[email protected]'
33
__description__ = 'Monitoring agent for PostgreSQL'
4-
__version__ = '2.4.4'
4+
__version__ = '2.4.5'
55
__licence__ = 'BSD'
66

77
__url__ = 'https://github.com/postgrespro/mamonsu'

packaging/debian/changelog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
mamonsu (2.4.5-1) stable; urgency=low
2+
* added checksum_failures metric in Instance plugin for Postgresql 12
3+
* changed PG version support in commands:
4+
mamonsu export zabbix-parameters
5+
mamonsu export zabbix-template
6+
mamonsu export template <file>
7+
mamonsu export zabbix-template
8+
* update help message for 'mamonsu export'
9+
10+
-- PostgresPro DBA <[email protected]> Tue, May 26 2020 15:43:00 +0300
11+
112
mamonsu (2.4.4-1) stable; urgency=low
213

314
* change command name for uploading metrics from file (written by mamonsu /var/log/mamonsu/localhost.log, [metric_log] parameter in agent.conf file) to Zabbix Server

packaging/rpm/SPECS/mamonsu.alt.spec

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
33

44
Name: mamonsu
5-
Version: 2.4.4
5+
Version: 2.4.5
66
Release: 1%{?dist}
77
Summary: Monitoring agent for PostgreSQL
88
Group: Applications/Internet
@@ -73,6 +73,15 @@ chown mamonsu.mamonsu /var/log/mamonsu
7373
/sbin/chkconfig --del mamonsu
7474

7575
%changelog
76+
* Tue May 26 2020 Alexander Popov <[email protected]> - 2.4.5-1
77+
- added checksum_failures metric in Instance plugin for Postgresql 12
78+
- changed PG version support in commands:
79+
mamonsu export zabbix-parameters
80+
mamonsu export zabbix-template
81+
mamonsu export template <file>
82+
mamonsu export zabbix-template
83+
- update help message for 'mamonsu export'
84+
7685
* Thu Feb 20 2020 Daria Vilkova <[email protected]> - 2.4.4-1
7786
- change command name for uploading metrics from file (written by mamonsu /var/log/mamonsu/localhost.log, [metric_log] parameter in agent.conf file) to Zabbix Server
7887
- update help message for 'upload' function

packaging/rpm/SPECS/mamonsu.spec

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: mamonsu
2-
Version: 2.4.4
2+
Version: 2.4.5
33
Release: 1%{?dist}
44
Summary: Monitoring agent for PostgreSQL
55
Group: Applications/Internet
@@ -70,6 +70,15 @@ chown mamonsu.mamonsu /var/log/mamonsu
7070
/sbin/chkconfig --del mamonsu
7171

7272
%changelog
73+
* Tue May 26 2020 Alexander Popov <[email protected]> - 2.4.5-1
74+
- added checksum_failures metric in Instance plugin for Postgresql 12
75+
- changed PG version support in commands:
76+
mamonsu export zabbix-parameters
77+
mamonsu export zabbix-template
78+
mamonsu export template <file>
79+
mamonsu export zabbix-template
80+
- update help message for 'mamonsu export'
81+
7382
* Thu Feb 20 2020 Daria Vilkova <[email protected]> - 2.4.4-1
7483
- change command name for uploading metrics from file (written by mamonsu /var/log/mamonsu/localhost.log, [metric_log] parameter in agent.conf file) to Zabbix Server
7584
- update help message for 'upload' function

packaging/rpm/SPECS/mamonsu.suse.spec

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%define _datarootdir %{_prefix}/share
22
Name: mamonsu
3-
Version: 2.4.4
3+
Version: 2.4.5
44
Release: 1%{?dist}
55
Summary: Monitoring agent for PostgreSQL
66
Group: Applications/Internet
@@ -74,6 +74,15 @@ chown mamonsu.mamonsu /var/log/mamonsu
7474
/sbin/chkconfig --del mamonsu
7575

7676
%changelog
77+
* Tue May 26 2020 Alexander Popov <[email protected]> - 2.4.5-1
78+
- added checksum_failures metric in Instance plugin for Postgresql 12
79+
- changed PG version support in commands:
80+
mamonsu export zabbix-parameters
81+
mamonsu export zabbix-template
82+
mamonsu export template <file>
83+
mamonsu export zabbix-template
84+
- update help message for 'mamonsu export'
85+
7786
* Thu Feb 20 2020 Daria Vilkova <[email protected]> - 2.4.4-1
7887
- change command name for uploading metrics from file (written by mamonsu /var/log/mamonsu/localhost.log, [metric_log] parameter in agent.conf file) to Zabbix Server
7988
- update help message for 'upload' function

packaging/win/mamonsu.def.nsh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
!define NAME Mamonsu
2-
!define VERSION 2.4.4
2+
!define VERSION 2.4.5
33
!define MAMONSU_REG_PATH "Software\PostgresPro\Mamonsu"
44
!define MAMONSU_REG_UNINSTALLER_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall"
55
!define EDB_REG "SOFTWARE\Postgresql"

0 commit comments

Comments
 (0)