postgres-vacuum-monitor 0.8.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +98 -0
- data/.gitignore +2 -1
- data/.rubocop.yml +4 -1
- data/Appraisals +10 -4
- data/CHANGELOG.md +16 -1
- data/Gemfile +2 -0
- data/README.md +1 -1
- data/Rakefile +2 -0
- data/bin/console +4 -3
- data/gemfiles/activerecord_5_2.gemfile +10 -0
- data/gemfiles/activerecord_6_0.gemfile +10 -0
- data/gemfiles/activerecord_6_1.gemfile +10 -0
- data/lib/postgres/vacuum/compatibility.rb +15 -0
- data/lib/postgres/vacuum/configuration.rb +2 -0
- data/lib/postgres/vacuum/jobs/monitor_job.rb +37 -5
- data/lib/postgres/vacuum/monitor.rb +4 -1
- data/lib/postgres/vacuum/monitor/query.rb +29 -5
- data/lib/postgres/vacuum/monitor/version.rb +3 -1
- data/postgres-vacuum-monitor.gemspec +8 -6
- metadata +37 -27
- data/.travis.yml +0 -13
- data/gemfiles/activerecord_5.gemfile +0 -7
- data/gemfiles/activerecord_6.gemfile +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 051751c519eaf2a606c61100ba6916430f0d6a92d3384cbad4cbfe8613102dfb
|
4
|
+
data.tar.gz: db7156a7e59e39301473d9484a10a2d8a36ec91e3e137335c33eb5ed60677a72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fca74a9c6b9a9a25548cd9d4b88c1488af26fb497cb2e9abed173f237fe96842334f35fb9b94d00f8cefc7e774a4b8affa0cdc2f4232247c55d3b88bb624acc
|
7
|
+
data.tar.gz: 0fc2ee2b4a0698d77cbc502d4f0c33b59e8c01755d0d64bd59b6f5e2693cbf3b9a25fac41f403db53398e72297b4a679918671c221e3bb52f775b4254c577c75
|
@@ -0,0 +1,98 @@
|
|
1
|
+
version: 2.1
|
2
|
+
jobs:
|
3
|
+
lint:
|
4
|
+
docker:
|
5
|
+
- image: salsify/ruby_ci:2.7.2
|
6
|
+
working_directory: ~/postgres-vacuum-monitor
|
7
|
+
steps:
|
8
|
+
- checkout
|
9
|
+
- restore_cache:
|
10
|
+
keys:
|
11
|
+
- v1-gems-ruby-2.7.2-{{ checksum "postgres-vacuum-monitor.gemspec" }}-{{ checksum "Gemfile" }}
|
12
|
+
- v1-gems-ruby-2.7.2-
|
13
|
+
- run:
|
14
|
+
name: Install Gems
|
15
|
+
command: |
|
16
|
+
if ! bundle check --path=vendor/bundle; then
|
17
|
+
bundle install --path=vendor/bundle --jobs=4 --retry=3
|
18
|
+
bundle clean
|
19
|
+
fi
|
20
|
+
- save_cache:
|
21
|
+
key: v1-gems-ruby-2.7.2-{{ checksum "postgres-vacuum-monitor.gemspec" }}-{{ checksum "Gemfile" }}
|
22
|
+
paths:
|
23
|
+
- "vendor/bundle"
|
24
|
+
- "gemfiles/vendor/bundle"
|
25
|
+
- run:
|
26
|
+
name: Run Rubocop
|
27
|
+
command: bundle exec rubocop --config .rubocop.yml
|
28
|
+
test:
|
29
|
+
parameters:
|
30
|
+
gemfile:
|
31
|
+
type: string
|
32
|
+
ruby_version:
|
33
|
+
type: string
|
34
|
+
docker:
|
35
|
+
- image: salsify/ruby_ci:<< parameters.ruby_version >>
|
36
|
+
environment:
|
37
|
+
TEST_DATABASE_URL: postgresql://circleci@localhost/circle_test
|
38
|
+
- image: circleci/postgres:9.6
|
39
|
+
environment:
|
40
|
+
POSTGRES_USER: "ubuntu"
|
41
|
+
POSTGRES_DB: "postgres_vacuum_monitor_test"
|
42
|
+
POSTGRES_HOST_AUTH_METHOD: "trust"
|
43
|
+
environment:
|
44
|
+
RACK_ENV: "test"
|
45
|
+
DB_HOST: 'localhost'
|
46
|
+
DB_USER: 'ubuntu'
|
47
|
+
RAILS_ENV: "test"
|
48
|
+
CIRCLE_TEST_REPORTS: "test-results"
|
49
|
+
BUNDLE_GEMFILE: << parameters.gemfile >>
|
50
|
+
working_directory: ~/postgres-vacuum-monitor
|
51
|
+
steps:
|
52
|
+
- checkout
|
53
|
+
- restore_cache:
|
54
|
+
keys:
|
55
|
+
- v1-gems-ruby-<< parameters.ruby_version >>-{{ checksum "postgres-vacuum-monitor.gemspec" }}-{{ checksum "<< parameters.gemfile >>" }}
|
56
|
+
- v1-gems-ruby-<< parameters.ruby_version >>-
|
57
|
+
- run:
|
58
|
+
name: Install Gems
|
59
|
+
command: |
|
60
|
+
if ! bundle check --path=vendor/bundle; then
|
61
|
+
bundle install --path=vendor/bundle --jobs=4 --retry=3
|
62
|
+
bundle clean
|
63
|
+
fi
|
64
|
+
- save_cache:
|
65
|
+
key: v1-gems-ruby-<< parameters.ruby_version >>-{{ checksum "postgres-vacuum-monitor.gemspec" }}-{{ checksum "<< parameters.gemfile >>" }}
|
66
|
+
paths:
|
67
|
+
- "vendor/bundle"
|
68
|
+
- "gemfiles/vendor/bundle"
|
69
|
+
- run:
|
70
|
+
name: Wait for Database
|
71
|
+
command: dockerize -wait tcp://localhost:5432 -timeout 60s
|
72
|
+
- run:
|
73
|
+
name: Wait for Database User
|
74
|
+
command: t=30; for i in `seq $t`; do psql -h localhost -p 5432 -U ubuntu -d postgres_vacuum_monitor_test -c '\q' && break; [ $i -eq $t ] && return 2; sleep 1; done;
|
75
|
+
- run:
|
76
|
+
name: Run Tests
|
77
|
+
command: |
|
78
|
+
bundle exec rspec --format RspecJunitFormatter --out $CIRCLE_TEST_REPORTS/rspec/junit.xml --format progress spec
|
79
|
+
- store_test_results:
|
80
|
+
path: "test-results"
|
81
|
+
workflows:
|
82
|
+
build:
|
83
|
+
jobs:
|
84
|
+
- lint
|
85
|
+
- test:
|
86
|
+
matrix:
|
87
|
+
parameters:
|
88
|
+
gemfile:
|
89
|
+
- "gemfiles/activerecord_5_2.gemfile"
|
90
|
+
- "gemfiles/activerecord_6_0.gemfile"
|
91
|
+
- "gemfiles/activerecord_6_1.gemfile"
|
92
|
+
ruby_version:
|
93
|
+
- "2.6.6"
|
94
|
+
- "2.7.2"
|
95
|
+
- "3.0.0"
|
96
|
+
exclude:
|
97
|
+
- gemfile: "gemfiles/activerecord_5_2.gemfile"
|
98
|
+
ruby_version: "3.0.0"
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
@@ -1,7 +1,13 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
appraise 'activerecord_5_2' do
|
4
|
+
gem 'activerecord', '~> 5.2.0'
|
5
|
+
end
|
6
|
+
|
7
|
+
appraise 'activerecord_6_0' do
|
8
|
+
gem 'activerecord', '~> 6.0.0'
|
3
9
|
end
|
4
10
|
|
5
|
-
appraise '
|
6
|
-
gem 'activerecord', '
|
11
|
+
appraise 'activerecord_6_1' do
|
12
|
+
gem 'activerecord', '~> 6.1.0'
|
7
13
|
end
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,22 @@
|
|
1
1
|
# postgres-vacuum-monitor
|
2
|
+
## v.12.0
|
3
|
+
- Add support for ruby 3
|
4
|
+
- Drop support for ruby < 2.6
|
5
|
+
|
6
|
+
## v.11.0
|
7
|
+
- Add support for rails 6.1
|
8
|
+
|
9
|
+
## v.10.1
|
10
|
+
- Query bug fix.
|
11
|
+
|
12
|
+
## v.10.0
|
13
|
+
- Add events for connection idle time and state.
|
14
|
+
|
15
|
+
## v.0.9.0
|
16
|
+
- Add the application name in the event.
|
2
17
|
|
3
18
|
## v.0.8.0
|
4
|
-
-
|
19
|
+
- Report on queries that are being blocked by another process.
|
5
20
|
|
6
21
|
## v.0.7.0
|
7
22
|
- Lower the default `LongTransactions` threshold from 1 hour to 5 minutes and make this configurable via
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
[![Build Status](https://
|
1
|
+
[![Build Status](https://circleci.com/gh/salsify/postgres-vacuum-monitor.svg?style=svg)](https://circleci.com/gh/salsify/postgres-vacuum-monitor)
|
2
2
|
[![Maintainability](https://api.codeclimate.com/v1/badges/9ced178ca8fee231a935/maintainability)](https://codeclimate.com/github/salsify/postgres-vacuum-monitor/maintainability)
|
3
3
|
[![Coverage Status](https://coveralls.io/repos/github/salsify/postgres-vacuum-monitor/badge.svg?branch=master)](https://coveralls.io/github/salsify/postgres-vacuum-monitor?branch=master)
|
4
4
|
|
data/Rakefile
CHANGED
data/bin/console
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
|
-
require
|
4
|
-
require
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'postgres/vacuum/monitor'
|
5
6
|
|
6
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
8
|
# with your gem easier. You can also use a different console, if you like.
|
@@ -10,5 +11,5 @@ require "postgres/vacuum/monitor"
|
|
10
11
|
# require "pry"
|
11
12
|
# Pry.start
|
12
13
|
|
13
|
-
require
|
14
|
+
require 'irb'
|
14
15
|
IRB.start(__FILE__)
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Postgres
|
4
|
+
module Vacuum
|
5
|
+
class Compatibility
|
6
|
+
ACTIVE_RECORD_VERSION = ::Gem::Version.new(::ActiveRecord::VERSION::STRING).release
|
7
|
+
PRE_RAILS_6_1 = ACTIVE_RECORD_VERSION < ::Gem::Version.new('6.1.0')
|
8
|
+
|
9
|
+
def self.pre_rails_6_1?
|
10
|
+
PRE_RAILS_6_1
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -1,11 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Postgres
|
2
4
|
module Vacuum
|
3
5
|
module Jobs
|
4
6
|
class MonitorJob
|
5
7
|
|
6
|
-
AUTOVACUUM_LAGGING_EVENT = 'AutoVacuumLagging'
|
7
|
-
LONG_TRANSACTIONS = 'LongTransactions'
|
8
|
-
BLOCKED_QUERIES = 'BlockedQueries'
|
8
|
+
AUTOVACUUM_LAGGING_EVENT = 'AutoVacuumLagging'
|
9
|
+
LONG_TRANSACTIONS = 'LongTransactions'
|
10
|
+
BLOCKED_QUERIES = 'BlockedQueries'
|
11
|
+
CONNECTION_STATE = 'ConnectionState'
|
12
|
+
CONNECTION_IDLE_TIME = 'ConnectionIdleTime'
|
9
13
|
|
10
14
|
def perform(*)
|
11
15
|
with_each_db_name_and_connection do |name, connection|
|
@@ -40,11 +44,32 @@ module Postgres
|
|
40
44
|
BLOCKED_QUERIES,
|
41
45
|
database_name: name,
|
42
46
|
blocked_pid: row['blocked_pid'],
|
47
|
+
blocked_application: row['blocked_application'],
|
43
48
|
blocked_statement: row['blocked_statement'],
|
44
49
|
blocking_pid: row['blocking_pid'],
|
50
|
+
blocking_application: row['blocking_application'],
|
45
51
|
current_statement_in_blocking_process: row['current_statement_in_blocking_process']
|
46
52
|
)
|
47
53
|
end
|
54
|
+
|
55
|
+
connection.execute(Postgres::Vacuum::Monitor::Query.connection_state).each do |row|
|
56
|
+
reporter_class.report_event(
|
57
|
+
CONNECTION_STATE,
|
58
|
+
database_name: name,
|
59
|
+
state: row['state'],
|
60
|
+
connection_count: row['connection_count']
|
61
|
+
)
|
62
|
+
end
|
63
|
+
|
64
|
+
connection.execute(Postgres::Vacuum::Monitor::Query.connection_idle_time).each do |row|
|
65
|
+
reporter_class.report_event(
|
66
|
+
CONNECTION_IDLE_TIME,
|
67
|
+
database_name: name,
|
68
|
+
max: row['max'],
|
69
|
+
median: row['median'],
|
70
|
+
percentile_90: row['percentile_90']
|
71
|
+
)
|
72
|
+
end
|
48
73
|
end
|
49
74
|
|
50
75
|
true
|
@@ -54,7 +79,9 @@ module Postgres
|
|
54
79
|
return @reporter_class_name if @reporter_class_name
|
55
80
|
|
56
81
|
@reporter_class_name = Postgres::Vacuum::Monitor.configuration.monitor_reporter_class_name&.safe_constantize
|
57
|
-
|
82
|
+
if @reporter_class_name.nil?
|
83
|
+
raise ConfigurationError.new('Missing or invalid report class name. Check your configuration')
|
84
|
+
end
|
58
85
|
|
59
86
|
@reporter_class_name
|
60
87
|
end
|
@@ -62,7 +89,12 @@ module Postgres
|
|
62
89
|
def with_each_db_name_and_connection
|
63
90
|
databases = Set.new
|
64
91
|
ActiveRecord::Base.connection_handler.connection_pools.map do |connection_pool|
|
65
|
-
db_name =
|
92
|
+
db_name = if Postgres::Vacuum::Compatibility.pre_rails_6_1?
|
93
|
+
connection_pool.spec.config[:database]
|
94
|
+
else
|
95
|
+
connection_pool.db_config.configuration_hash[:database]
|
96
|
+
end
|
97
|
+
|
66
98
|
# activerecord allocates a connection pool per call to establish_connection
|
67
99
|
# multiple pools might interact with the same database so we use the
|
68
100
|
# database name to dedup
|
@@ -1,4 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'active_record'
|
4
|
+
require 'postgres/vacuum/compatibility'
|
2
5
|
require 'postgres/vacuum/configuration'
|
3
6
|
require 'postgres/vacuum/monitor/version'
|
4
7
|
require 'postgres/vacuum/monitor/query'
|
@@ -12,7 +15,7 @@ module Postgres
|
|
12
15
|
end
|
13
16
|
|
14
17
|
def self.configuration
|
15
|
-
@
|
18
|
+
@configuration ||= Configuration.new
|
16
19
|
end
|
17
20
|
|
18
21
|
def self.reset
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Postgres
|
2
4
|
module Vacuum
|
3
5
|
module Monitor
|
@@ -5,10 +7,10 @@ module Postgres
|
|
5
7
|
extend self
|
6
8
|
|
7
9
|
STATES = ["'idle in transaction'", "'active'"].freeze
|
8
|
-
THRESHOLD_SETTING = "'autovacuum_vacuum_threshold'"
|
9
|
-
SCALE_FACTOR_SETTING = "'autovacuum_vacuum_scale_factor'"
|
10
|
-
MAX_AGE_SETTING = "'autovacuum_freeze_max_age'"
|
11
|
-
PG_CATALOG = "'pg_catalog'"
|
10
|
+
THRESHOLD_SETTING = "'autovacuum_vacuum_threshold'"
|
11
|
+
SCALE_FACTOR_SETTING = "'autovacuum_vacuum_scale_factor'"
|
12
|
+
MAX_AGE_SETTING = "'autovacuum_freeze_max_age'"
|
13
|
+
PG_CATALOG = "'pg_catalog'"
|
12
14
|
|
13
15
|
def long_running_transactions
|
14
16
|
<<-SQL
|
@@ -81,7 +83,7 @@ module Postgres
|
|
81
83
|
blocking_activity.application_name AS blocking_application
|
82
84
|
FROM pg_catalog.pg_locks blocked_locks
|
83
85
|
JOIN pg_catalog.pg_stat_activity blocked_activity ON blocked_activity.pid = blocked_locks.pid
|
84
|
-
JOIN pg_catalog.pg_locks blocking_locks
|
86
|
+
JOIN pg_catalog.pg_locks blocking_locks
|
85
87
|
ON blocking_locks.locktype = blocked_locks.locktype
|
86
88
|
AND blocking_locks.DATABASE IS NOT DISTINCT FROM blocked_locks.DATABASE
|
87
89
|
AND blocking_locks.relation IS NOT DISTINCT FROM blocked_locks.relation
|
@@ -97,6 +99,28 @@ module Postgres
|
|
97
99
|
WHERE NOT blocked_locks.GRANTED;
|
98
100
|
SQL
|
99
101
|
end
|
102
|
+
|
103
|
+
def connection_state
|
104
|
+
<<-SQL
|
105
|
+
SELECT
|
106
|
+
state, count(*) as connection_count
|
107
|
+
FROM pg_stat_activity
|
108
|
+
GROUP BY state
|
109
|
+
ORDER BY connection_count DESC;
|
110
|
+
SQL
|
111
|
+
end
|
112
|
+
|
113
|
+
def connection_idle_time
|
114
|
+
<<-SQL
|
115
|
+
SELECT
|
116
|
+
max(EXTRACT(EPOCH FROM (CURRENT_TIMESTAMP - state_change))) as max,
|
117
|
+
percentile_cont(0.5) within GROUP (ORDER BY EXTRACT(EPOCH FROM (CURRENT_TIMESTAMP - state_change)) DESC) AS median,
|
118
|
+
percentile_cont(0.9) within GROUP (ORDER BY EXTRACT(EPOCH FROM (CURRENT_TIMESTAMP - state_change)) DESC) AS percentile_90
|
119
|
+
FROM pg_stat_activity
|
120
|
+
WHERE state = 'idle'
|
121
|
+
LIMIT 1000;
|
122
|
+
SQL
|
123
|
+
end
|
100
124
|
end
|
101
125
|
end
|
102
126
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
|
2
|
-
lib = File.expand_path('
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
5
|
require 'postgres/vacuum/monitor/version'
|
5
6
|
|
@@ -10,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
10
11
|
spec.email = ['fgarces@salsify.com']
|
11
12
|
|
12
13
|
spec.summary = 'Simple stats collector for postgres auto vacuumer.'
|
13
|
-
spec.description = 'Queries
|
14
|
+
spec.description = 'Queries ActiveRecord DBs for info regarding auto vacuum processes and long running queries.'
|
14
15
|
spec.homepage = 'https://github.com/salsify/postgres-vacuum-monitor'
|
15
16
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
@@ -20,16 +21,17 @@ Gem::Specification.new do |spec|
|
|
20
21
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
22
|
spec.require_paths = ['lib']
|
22
23
|
|
23
|
-
spec.required_ruby_version = '>= 2.
|
24
|
+
spec.required_ruby_version = '>= 2.6.0'
|
24
25
|
|
25
26
|
spec.add_development_dependency 'appraisal'
|
26
27
|
spec.add_development_dependency 'bundler'
|
27
|
-
spec.add_development_dependency '
|
28
|
+
spec.add_development_dependency 'coveralls_reborn', '>= 0.18.0'
|
28
29
|
spec.add_development_dependency 'database_cleaner'
|
29
|
-
spec.add_development_dependency 'rake'
|
30
|
+
spec.add_development_dependency 'rake'
|
30
31
|
spec.add_development_dependency 'rspec', '~> 3.2'
|
32
|
+
spec.add_development_dependency 'rspec_junit_formatter'
|
31
33
|
spec.add_development_dependency 'salsify_rubocop'
|
32
34
|
|
33
|
-
spec.add_dependency 'activerecord', '
|
35
|
+
spec.add_dependency 'activerecord', '< 6.2.0'
|
34
36
|
spec.add_dependency 'pg', '>= 0.18', '< 2.0'
|
35
37
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: postgres-vacuum-monitor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fernando Garces
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appraisal
|
@@ -39,19 +39,19 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: coveralls_reborn
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 0.18.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 0.18.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: database_cleaner
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -70,16 +70,16 @@ dependencies:
|
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - "
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
75
|
+
version: '0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- - "
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
82
|
+
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: rspec
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -95,7 +95,7 @@ dependencies:
|
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '3.2'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
98
|
+
name: rspec_junit_formatter
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - ">="
|
@@ -109,25 +109,33 @@ dependencies:
|
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
|
-
name:
|
112
|
+
name: salsify_rubocop
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
115
|
- - ">="
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: '
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: activerecord
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
118
129
|
- - "<"
|
119
130
|
- !ruby/object:Gem::Version
|
120
|
-
version:
|
131
|
+
version: 6.2.0
|
121
132
|
type: :runtime
|
122
133
|
prerelease: false
|
123
134
|
version_requirements: !ruby/object:Gem::Requirement
|
124
135
|
requirements:
|
125
|
-
- - ">="
|
126
|
-
- !ruby/object:Gem::Version
|
127
|
-
version: '5'
|
128
136
|
- - "<"
|
129
137
|
- !ruby/object:Gem::Version
|
130
|
-
version:
|
138
|
+
version: 6.2.0
|
131
139
|
- !ruby/object:Gem::Dependency
|
132
140
|
name: pg
|
133
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -148,18 +156,18 @@ dependencies:
|
|
148
156
|
- - "<"
|
149
157
|
- !ruby/object:Gem::Version
|
150
158
|
version: '2.0'
|
151
|
-
description: Queries
|
152
|
-
|
159
|
+
description: Queries ActiveRecord DBs for info regarding auto vacuum processes and
|
160
|
+
long running queries.
|
153
161
|
email:
|
154
162
|
- fgarces@salsify.com
|
155
163
|
executables: []
|
156
164
|
extensions: []
|
157
165
|
extra_rdoc_files: []
|
158
166
|
files:
|
167
|
+
- ".circleci/config.yml"
|
159
168
|
- ".gitignore"
|
160
169
|
- ".rspec"
|
161
170
|
- ".rubocop.yml"
|
162
|
-
- ".travis.yml"
|
163
171
|
- Appraisals
|
164
172
|
- CHANGELOG.md
|
165
173
|
- CODE_OF_CONDUCT.md
|
@@ -169,8 +177,10 @@ files:
|
|
169
177
|
- Rakefile
|
170
178
|
- bin/console
|
171
179
|
- bin/setup
|
172
|
-
- gemfiles/
|
173
|
-
- gemfiles/
|
180
|
+
- gemfiles/activerecord_5_2.gemfile
|
181
|
+
- gemfiles/activerecord_6_0.gemfile
|
182
|
+
- gemfiles/activerecord_6_1.gemfile
|
183
|
+
- lib/postgres/vacuum/compatibility.rb
|
174
184
|
- lib/postgres/vacuum/configuration.rb
|
175
185
|
- lib/postgres/vacuum/jobs/monitor_job.rb
|
176
186
|
- lib/postgres/vacuum/monitor.rb
|
@@ -180,7 +190,7 @@ files:
|
|
180
190
|
homepage: https://github.com/salsify/postgres-vacuum-monitor
|
181
191
|
licenses: []
|
182
192
|
metadata: {}
|
183
|
-
post_install_message:
|
193
|
+
post_install_message:
|
184
194
|
rdoc_options: []
|
185
195
|
require_paths:
|
186
196
|
- lib
|
@@ -188,15 +198,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
188
198
|
requirements:
|
189
199
|
- - ">="
|
190
200
|
- !ruby/object:Gem::Version
|
191
|
-
version: 2.
|
201
|
+
version: 2.6.0
|
192
202
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
193
203
|
requirements:
|
194
204
|
- - ">="
|
195
205
|
- !ruby/object:Gem::Version
|
196
206
|
version: '0'
|
197
207
|
requirements: []
|
198
|
-
rubygems_version: 3.
|
199
|
-
signing_key:
|
208
|
+
rubygems_version: 3.1.4
|
209
|
+
signing_key:
|
200
210
|
specification_version: 4
|
201
211
|
summary: Simple stats collector for postgres auto vacuumer.
|
202
212
|
test_files: []
|
data/.travis.yml
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.5.6
|
4
|
-
- 2.6.3
|
5
|
-
gemfile:
|
6
|
-
- gemfiles/activerecord_5.gemfile
|
7
|
-
- gemfiles/activerecord_6.gemfile
|
8
|
-
services:
|
9
|
-
- postgresql
|
10
|
-
before_script:
|
11
|
-
- psql -c 'create database postgres_vacuum_monitor_test;' -U postgres
|
12
|
-
addons:
|
13
|
-
postgresql: '9.6'
|