Commit b923d1b5 authored by Stan Hu's avatar Stan Hu

Merge branch 'check_pg_stat_activity' into 'master'

Show pg_stat_activity before each test run

See merge request gitlab-org/gitlab-ce!25723
parents b3bd8564 be99adb1
# frozen_string_literal: true
RSpec.configure do |config|
config.before do
if Gitlab::Database.postgresql? && ENV['PG_STAT_WARNING_THRESHOLD']
warning_threshold = ENV['PG_STAT_WARNING_THRESHOLD'].to_i
results = ActiveRecord::Base.connection.execute('SELECT * FROM pg_stat_activity')
ntuples = results.ntuples
warn("pg_stat_activity count: #{ntuples}")
if ntuples > warning_threshold
results.each do |result|
warn result.inspect
end
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment