postgres-vacuum-monitor 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -1
- data/lib/postgres/vacuum/jobs/monitor_job.rb +2 -0
- data/lib/postgres/vacuum/monitor/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4382d19c2d29b384cf066212c3b0611e42e6c229fe545222c24490d4df8cdc50
|
4
|
+
data.tar.gz: 6f0636e2f3bfea67bfde5c92c5e373c23870582e748248fc338a3f1b50c8488d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46159ba1e63c96ccfa8c672e61b9312655417202f7197c4acd841781f03d309fedefb1096477be5228a060433dcbe6a506883c0d538ab3a4f14c08e24525ea0f
|
7
|
+
data.tar.gz: e964d5f157117ba0a926b654fd882dd9f8d24a18e51c8cc4683e4079de9661e17a7a4d2edcaafa54246249b5b3d6f3e06aa6564ca63a04a52dca098f9c120f0d
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,10 @@
|
|
1
1
|
# postgres-vacuum-monitor
|
2
2
|
|
3
3
|
## v.0.8.0
|
4
|
-
-
|
4
|
+
- Add the application name in the event.
|
5
|
+
|
6
|
+
## v.0.8.0
|
7
|
+
- Report on queries that are being blocked by another process.
|
5
8
|
|
6
9
|
## v.0.7.0
|
7
10
|
- Lower the default `LongTransactions` threshold from 1 hour to 5 minutes and make this configurable via
|
@@ -40,8 +40,10 @@ module Postgres
|
|
40
40
|
BLOCKED_QUERIES,
|
41
41
|
database_name: name,
|
42
42
|
blocked_pid: row['blocked_pid'],
|
43
|
+
blocked_application: row['blocked_application'],
|
43
44
|
blocked_statement: row['blocked_statement'],
|
44
45
|
blocking_pid: row['blocking_pid'],
|
46
|
+
blocking_application: row['blocking_application'],
|
45
47
|
current_statement_in_blocking_process: row['current_statement_in_blocking_process']
|
46
48
|
)
|
47
49
|
end
|