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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a0a495f163ac1fa4a6f94f70ec5696f18bb7fa21c1d3c4d14112a851cce02da
4
- data.tar.gz: 6fb8e82c0a402713cae34316c223c61fc69b3794e65b50c4eaaccb4c21842073
3
+ metadata.gz: 4382d19c2d29b384cf066212c3b0611e42e6c229fe545222c24490d4df8cdc50
4
+ data.tar.gz: 6f0636e2f3bfea67bfde5c92c5e373c23870582e748248fc338a3f1b50c8488d
5
5
  SHA512:
6
- metadata.gz: d0549c01be8daf6157d6d576f46ac2b0181f06118972d9b6d1b5d2e7006fc07a1de042fee185f21587f823d2c4b0fee4ed308b3bd09057a6a970a6a7b7a9ba71
7
- data.tar.gz: 4da8027e9b3eff11a63866c171310c6393405eca2bc07e3c40f953ca769fc7b30d2192e4a83913adfdadb82d0b05451e16a5dca5f48c752f5a2375ca1124602d
6
+ metadata.gz: 46159ba1e63c96ccfa8c672e61b9312655417202f7197c4acd841781f03d309fedefb1096477be5228a060433dcbe6a506883c0d538ab3a4f14c08e24525ea0f
7
+ data.tar.gz: e964d5f157117ba0a926b654fd882dd9f8d24a18e51c8cc4683e4079de9661e17a7a4d2edcaafa54246249b5b3d6f3e06aa6564ca63a04a52dca098f9c120f0d
@@ -1,7 +1,10 @@
1
1
  # postgres-vacuum-monitor
2
2
 
3
3
  ## v.0.8.0
4
- - Also report on queries that are being blocked by another process.
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
@@ -1,7 +1,7 @@
1
1
  module Postgres
2
2
  module Vacuum
3
3
  module Monitor
4
- VERSION = '0.8.0'.freeze
4
+ VERSION = '0.9.0'.freeze
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: postgres-vacuum-monitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Garces