Skip to content
Snippets Groups Projects
Commit b923d1b5 authored by Stan Hu's avatar Stan Hu
Browse files

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
No related branches found
No related tags found
No related merge requests found
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment