mirror of
https://github.com/percona/pg_stat_monitor.git
synced 2026-02-04 14:06:20 +00:00
Merge branch 'master' of https://github.com/percona/pg_stat_monitor
This commit is contained in:
6
.github/workflows/cppcheck.yml
vendored
6
.github/workflows/cppcheck.yml
vendored
@@ -4,7 +4,7 @@ on: [push]
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: cppcheck-test
|
name: cppcheck-test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-18.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
@@ -12,5 +12,7 @@ jobs:
|
|||||||
run: sudo apt-get install cppcheck
|
run: sudo apt-get install cppcheck
|
||||||
|
|
||||||
- name: Execute linter check with cppcheck
|
- name: Execute linter check with cppcheck
|
||||||
run: sudo cppcheck --enable=all --inline-suppr --template='{file}:{line},{severity},{id},{message}' --error-exitcode=1 --suppress=missingIncludeSystem --suppress=missingInclude --check-config .
|
run: |
|
||||||
|
set -x
|
||||||
|
cppcheck --enable=all --inline-suppr --template='{file}:{line},{severity},{id},{message}' --error-exitcode=1 --suppress=missingIncludeSystem --suppress=missingInclude --suppress=unmatchedSuppression:pg_stat_monitor.c --check-config .
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/pg11test.yml
vendored
2
.github/workflows/pg11test.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
sudo rm -f /usr/bin/pg_config
|
sudo rm -f /usr/bin/pg_config
|
||||||
|
|
||||||
- name: Create pgsql dir
|
- name: Create pgsql dir
|
||||||
run: sudo mkdir -p /opt/pgsql
|
run: mkdir -p /opt/pgsql
|
||||||
|
|
||||||
- name: Build postgres
|
- name: Build postgres
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
2
.github/workflows/pg12test.yml
vendored
2
.github/workflows/pg12test.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
sudo rm -f /usr/bin/pg_config
|
sudo rm -f /usr/bin/pg_config
|
||||||
|
|
||||||
- name: Create pgsql dir
|
- name: Create pgsql dir
|
||||||
run: sudo mkdir -p /opt/pgsql
|
run: mkdir -p /opt/pgsql
|
||||||
|
|
||||||
- name: Build postgres
|
- name: Build postgres
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
2
.github/workflows/pg13test.yml
vendored
2
.github/workflows/pg13test.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
sudo rm -f /usr/bin/pg_config
|
sudo rm -f /usr/bin/pg_config
|
||||||
|
|
||||||
- name: Create pgsql dir
|
- name: Create pgsql dir
|
||||||
run: sudo mkdir -p /opt/pgsql
|
run: mkdir -p /opt/pgsql
|
||||||
|
|
||||||
- name: Build postgres
|
- name: Build postgres
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -11,6 +11,12 @@ Below is the complete list of release notes for every version of ``pg_stat_monit
|
|||||||
## REL0_8_0_STABLE
|
## REL0_8_0_STABLE
|
||||||
### Improvements
|
### Improvements
|
||||||
|
|
||||||
|
Column userid (int64) was removed.
|
||||||
|
Column dbid (int64) was removed.
|
||||||
|
|
||||||
|
Column user (string) was added (replacement for userid).
|
||||||
|
Column datname (string) was added (replacement for dbid).
|
||||||
|
|
||||||
[PG-176](https://jira.percona.com/browse/PG-176): Extract fully qualified relations name.
|
[PG-176](https://jira.percona.com/browse/PG-176): Extract fully qualified relations name.
|
||||||
|
|
||||||
[PG-175](https://jira.percona.com/browse/PG-175): Only Superuser / Privileged user can view IP address.
|
[PG-175](https://jira.percona.com/browse/PG-175): Only Superuser / Privileged user can view IP address.
|
||||||
@@ -73,8 +79,6 @@ Below is the complete list of release notes for every version of ``pg_stat_monit
|
|||||||
|
|
||||||
[PG-111](https://jira.percona.com/browse/PG-111) Show information for incomplete buckets.
|
[PG-111](https://jira.percona.com/browse/PG-111) Show information for incomplete buckets.
|
||||||
|
|
||||||
[PG-112](https://jira.percona.com/browse/PG-112) Rename the column from “IP” to a more meaningful "client_ip".
|
|
||||||
|
|
||||||
[PG-148](https://jira.percona.com/browse/PG-148) Loss of query statistics/monitoring due to not enough “slots” available.
|
[PG-148](https://jira.percona.com/browse/PG-148) Loss of query statistics/monitoring due to not enough “slots” available.
|
||||||
|
|
||||||
## v0.6.0
|
## v0.6.0
|
||||||
|
|||||||
Reference in New Issue
Block a user