Commit Graph

731 Commits (PG-1101-cppcheck)

Author SHA1 Message Date
Naeem Akhter 2e31738f15 PG-195: Change pgsm_bucket_time value from 300 to 60.
Changed the default value of pgsm_bucket_time from 300 to 60. Now neither PMM users will need to adjust the default value, nor
restart of PG server will be required for this purpose.
2021-08-17 18:23:15 +05:00
Diego Fronza 33b22e4ef2 PG-203: Fix memory leak.
The query_txt variable is allocated at the beginning of the
pg_stat_monitor_internal() function and released at the end, but an
extra malloc call to allocate it was added within an internal loop in
the funcion, thus allocating memory for every loop iteration, without
releasing the memory in the loop.

The query_txt variable can be reused inside the loop body, so this
commit removes the redundant declaration of query_txt from inside the
loop, which also fixes the leak.
2021-08-06 15:52:29 -04:00
Ibrar Ahmed 641c91980c
Merge pull request #93 from Naeem-Akhter/master
PG-218: Added Coverall code coverage to pg_stat_monitor.
2021-08-06 22:43:26 +05:00
Naeem Akhter 7d5b7e13a6 PG-218: Add Coverall code coverage to pg_stat_monitor.
Added 'Coverall' (https://coveralls.io) code coverage to pg_stat_monitor repo so that in future we don't have to perform this activity manually. Secondly, it will also make sure that code coverage detailed report link and status is readily available on repos github main page for each checkin (PR & Push), eventually helping in development velocity.
2021-08-06 18:24:41 +05:00
Ibrar Ahmed 661077ddf2
Merge pull request #87 from darkfronza/PG-200_add_appname_to_bucket_id
PG-200: Add application name to the bucket ID.
2021-08-03 17:35:02 +05:00
Ibrar Ahmed 5449a9da1d
Merge pull request #91 from Naeem-Akhter/master
DISTPG-271: Fix the failing 'relations' testcase on master branch.
2021-08-03 17:34:22 +05:00
Naeem Akhter 13501632b1 DISTPG-271: Fix the failing 'relations' testcase 2021-08-02 19:37:14 +05:00
Diego Fronza 99f01d37e3 PG-200: Add application name to the bucket ID.
Add application name to the key used to identify queries in the hash
table, this allows different applications to have separate entries in
pg_stat_monitor view if they issued the same query.
2021-07-29 15:05:08 -04:00
Ibrar Ahmed 7934ccbbdf
Merge pull request #86 from nastena1606/PG-198-Doc-update-accent-on-PPG
PG-198 Update readme with more attention to Percona Distribution
2021-07-29 21:59:34 +05:00
Anastasia Alexadrova 226cd0ba33 PG-198 Update readme with more attention to Percona Distribution
modified:   README.md
2021-07-29 18:00:40 +03:00
Ibrar Ahmed 88948d6a0a README file updated. 2021-07-27 13:41:31 +00:00
Ibrar Ahmed 81b88cf3cc PG-194: PostgreSQL 13.3 and 14 support.
PostgreSQL-14 GitHub Action added.
2021-07-27 13:39:23 +00:00
Ibrar Ahmed 6c2e052396 PG-194: PostgreSQL 13.3 and 14 support. 2021-07-27 13:37:13 +00:00
Ibrar Ahmed 1dcf596194 Merge branch 'master' of https://github.com/percona/pg_stat_monitor 2021-07-27 12:58:22 +00:00
Ibrar Ahmed 815e543bfe PG-194: PostgreSQL 13.3 and 14 support. 2021-07-27 12:57:29 +00:00
Ibrar Ahmed c329646b0f
Merge pull request #84 from darkfronza/PG-197_fix_conflict_pg_stat_statements
PG-197: Fix conflict with pg_stat_statements
2021-07-26 18:26:14 +05:00
Diego Fronza a3a4c99011 PG-197: Fix conflict with pg_stat_statements.
If pg_stat_monitor is loaded after pg_stat_statement, then it will end
up calling standard_planner function twice in the pgss_planner_hook()
function, this will trigger an assertion failure from PostgreSQL as this
function expects an untouched Query* object, and the first call to
standard_planner() done by pg_stat_statements modifies the object.

To address the problem, we avoid calling standard_planner function twice
in pg_stat_monitor, if a previous handler is installed for the hook
planner_hook, then we assume that this previous hook has already called
standard_planner function and don't do it again.
2021-07-26 10:16:29 -04:00
Roma Novikov 66385ab577
Update USER_GUIDE.md
typo fix
2021-06-08 18:19:38 +03:00
Ibrar Ahmed 2200ba8659 Merge branch 'master' of https://github.com/percona/pg_stat_monitor 2021-05-21 21:31:00 +05:00
Ibrar Ahmed f470ba591a PG-194: PostgreSQL-14 support added. 2021-05-21 21:29:58 +05:00
Ibrar Ahmed afb552dc8a
PG-193: Comment based tags to identify different parameters. 2021-05-19 22:17:07 +05:00
Ibrar Ahmed 67b3d961ca PG-193: Comment based tags to identify different parameters. 2021-05-19 22:15:37 +05:00
Ibrar Ahmed 89614e442b PG-190: Does not show query, if query elapsed time is greater than bucket time. 2021-04-08 15:29:42 +05:00
Ibrar Ahmed e8bfff127b README Update. 2021-03-31 16:55:38 +05:00
Ibrar Ahmed 1dce75c621 README Update. 2021-03-31 16:50:50 +05:00
Ibrar Ahmed f42893472a PG-189: Regression crash in case of PostgreSQL 11.
The size of string required to contain the queryid is smaller which
produce the crash.
2021-03-21 00:39:29 +05:00
Ibrar Ahmed 334389c76e PG-188: Added a new column to monitor the query state.
Added missing test case files.
2021-03-21 00:17:17 +05:00
Ibrar Ahmed f8ed33a92a PG-188: Added a new column to monitor the query state. 2021-03-21 00:04:39 +05:00
Ibrar Ahmed 73fbc7f017 Merge branch 'master' of https://github.com/percona/pg_stat_monitor 2021-03-17 20:46:54 +05:00
Ibrar Ahmed 96a7603aae PG-187: Compilation Error for PostgreSQL 11 and PostgreSQL 12. 2021-03-17 20:42:58 +05:00
Ibrar Ahmed 27c25e5c2a
Merge pull request #79 from mu-samoylov/fix_permissions
Fix permissions
2021-03-17 20:12:05 +05:00
Mikhail Samoylov 100f56edca ci: edit cppcheck settings 2021-03-17 18:08:48 +03:00
Mikhail Samoylov d52d5f8be5 ci: delete sudo from create dir in opt 2021-03-17 17:55:05 +03:00
Ibrar Ahmed 07d32538fc
Merge pull request #78 from JiriCtvrtka/PMM-7569-pg-monitor-08
PMM-7569 Fix release notes.
2021-03-17 19:22:53 +05:00
Ibrar Ahmed e0fc683810 PG-186: Add support to monitor query execution plan. 2021-03-17 18:56:39 +05:00
Ibrar Ahmed aa0ca050d5 PG-186: Add support to monitor query execution plan.
Fix a regression test case.
2021-03-12 19:09:28 +00:00
Ibrar Ahmed 066162c3f6 PG-186: Add support to monitor query execution plan.
This requires refactoring of code to add this functionality. Along with
that this patch contains regression test cases.
2021-03-12 18:55:12 +00:00
Jiri Ctvrtka 7b7d63be86 PMM-7569 Fix changelog. 2021-03-08 17:46:16 +01:00
Jiri Ctvrtka 22351dfa5f PMM-7569 Fix release notes. 2021-03-08 12:34:36 +01:00
EvgeniyPatlan 8f69daa5dd
Merge pull request #77 from EvgeniyPatlan/master
DISTPG-169 Add epoch for rpm
2021-02-25 18:36:25 +02:00
EvgeniyPatlan a065fcc687
DISTPG-169 Add epoch for rpm 2021-02-25 18:20:11 +02:00
Ibrar Ahmed 1c1ace02a4
Merge pull request #76 from mu-samoylov/PG-184
PG-184: New test case to test the version.
2021-02-24 15:19:01 +05:00
Mikhail Samoylov 15a62d9ad3 PG-184: Test version. 2021-02-23 20:43:22 +03:00
Ibrar Ahmed 5b45951441 PG-183. Move tests to separate directory.
Remove unwanted sql and expected directory.
2021-02-23 16:23:19 +00:00
Ibrar Ahmed 35b72111a0
Merge pull request #75 from mu-samoylov/PG-183
PG-183
2021-02-23 21:18:18 +05:00
Mikhail Samoylov 2e3cba343f PG-183. Move tests to separate directory 2021-02-20 23:17:34 +03:00
Ibrar Ahmed f8b13d706a
Update RELEASE_NOTES.md 2021-02-17 20:27:31 +05:00
Ibrar Ahmed 4d23f750d5
Update RELEASE_NOTES.md 2021-02-17 20:27:13 +05:00
Ibrar Ahmed 28aaec15a4
Update USER_GUIDE.md 2021-02-17 20:07:12 +05:00
Ibrar Ahmed da13166849
Update USER_GUIDE.md 2021-02-17 20:01:34 +05:00