debian-mirror-gitlab/spec/support/shared_examples/metrics/active_record_subscriber_shared_examples.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

205 lines
9.1 KiB
Ruby
Raw Normal View History

2021-04-17 20:07:23 +05:30
# frozen_string_literal: true
RSpec.shared_examples 'store ActiveRecord info in RequestStore' do |db_role|
2022-01-26 12:08:38 +05:30
let(:db_config_name) do
db_config_name = ::Gitlab::Database.db_config_names.first
db_config_name += "_replica" if db_role == :secondary
db_config_name
end
2021-10-27 15:23:28 +05:30
let(:expected_payload_defaults) do
2021-11-18 22:05:49 +05:30
result = {}
2021-10-27 15:23:28 +05:30
metrics =
::Gitlab::Metrics::Subscribers::ActiveRecord.load_balancing_metric_counter_keys +
::Gitlab::Metrics::Subscribers::ActiveRecord.db_counter_keys
2021-11-18 22:05:49 +05:30
metrics.each do |key|
2021-10-27 15:23:28 +05:30
result[key] = 0
end
2021-11-18 22:05:49 +05:30
::Gitlab::Metrics::Subscribers::ActiveRecord.load_balancing_metric_duration_keys.each do |key|
result[key] = 0.0
end
result
2021-10-27 15:23:28 +05:30
end
def transform_hash(hash, another_hash)
another_hash.each do |key, value|
raise "Unexpected key: #{key}" unless hash[key]
end
hash.merge(another_hash)
end
2021-04-17 20:07:23 +05:30
it 'prevents db counters from leaking to the next transaction' do
2.times do
Gitlab::WithRequestStore.with_request_store do
subscriber.sql(event)
2021-10-27 15:23:28 +05:30
2023-01-13 00:05:48 +05:30
expected = case db_role
when :primary
2021-10-27 15:23:28 +05:30
transform_hash(expected_payload_defaults, {
db_count: record_query ? 1 : 0,
db_write_count: record_write_query ? 1 : 0,
db_cached_count: record_cached_query ? 1 : 0,
db_primary_cached_count: record_cached_query ? 1 : 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_cached_count": record_cached_query ? 1 : 0,
2021-10-27 15:23:28 +05:30
db_primary_count: record_query ? 1 : 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_count": record_query ? 1 : 0,
2021-11-18 22:05:49 +05:30
db_primary_duration_s: record_query ? 0.002 : 0.0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_duration_s": record_query ? 0.002 : 0.0,
2021-10-27 15:23:28 +05:30
db_primary_wal_count: record_wal_query ? 1 : 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_wal_count": record_wal_query ? 1 : 0,
2021-10-27 15:23:28 +05:30
db_primary_wal_cached_count: record_wal_query && record_cached_query ? 1 : 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_wal_cached_count": record_wal_query && record_cached_query ? 1 : 0
2021-10-27 15:23:28 +05:30
})
2023-01-13 00:05:48 +05:30
when :replica
2021-10-27 15:23:28 +05:30
transform_hash(expected_payload_defaults, {
db_count: record_query ? 1 : 0,
db_write_count: record_write_query ? 1 : 0,
db_cached_count: record_cached_query ? 1 : 0,
db_replica_cached_count: record_cached_query ? 1 : 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_cached_count": record_cached_query ? 1 : 0,
2021-10-27 15:23:28 +05:30
db_replica_count: record_query ? 1 : 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_count": record_query ? 1 : 0,
2021-11-18 22:05:49 +05:30
db_replica_duration_s: record_query ? 0.002 : 0.0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_duration_s": record_query ? 0.002 : 0.0,
2021-10-27 15:23:28 +05:30
db_replica_wal_count: record_wal_query ? 1 : 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_wal_count": record_wal_query ? 1 : 0,
2021-10-27 15:23:28 +05:30
db_replica_wal_cached_count: record_wal_query && record_cached_query ? 1 : 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_wal_cached_count": record_wal_query && record_cached_query ? 1 : 0
2021-10-27 15:23:28 +05:30
})
else
2021-11-18 22:05:49 +05:30
transform_hash(expected_payload_defaults, {
2021-10-27 15:23:28 +05:30
db_count: record_query ? 1 : 0,
db_write_count: record_write_query ? 1 : 0,
2021-11-18 22:05:49 +05:30
db_cached_count: record_cached_query ? 1 : 0,
db_primary_cached_count: 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_cached_count": 0,
2021-11-18 22:05:49 +05:30
db_primary_count: 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_count": 0,
2021-11-18 22:05:49 +05:30
db_primary_duration_s: 0.0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_duration_s": 0.0,
2021-11-18 22:05:49 +05:30
db_primary_wal_count: 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_wal_count": 0,
2021-11-18 22:05:49 +05:30
db_primary_wal_cached_count: 0,
2022-01-26 12:08:38 +05:30
"db_#{db_config_name}_wal_cached_count": 0
2021-11-18 22:05:49 +05:30
})
2021-10-27 15:23:28 +05:30
end
2021-09-30 23:02:18 +05:30
expect(described_class.db_counter_payload).to eq(expected)
end
end
end
2021-04-17 20:07:23 +05:30
end
RSpec.shared_examples 'record ActiveRecord metrics in a metrics transaction' do |db_role|
2022-01-26 12:08:38 +05:30
let(:db_config_name) do
db_config_name = ::Gitlab::Database.db_config_names.first
db_config_name += "_replica" if db_role == :secondary
db_config_name
end
2021-10-27 15:23:28 +05:30
2021-04-17 20:07:23 +05:30
it 'increments only db counters' do
if record_query
2021-10-27 15:23:28 +05:30
expect(transaction).to receive(:increment).with(:gitlab_transaction_db_count_total, 1, { db_config_name: db_config_name })
expect(transaction).to receive(:increment).with("gitlab_transaction_db_#{db_role}_count_total".to_sym, 1, { db_config_name: db_config_name }) if db_role
2021-04-17 20:07:23 +05:30
else
2021-10-27 15:23:28 +05:30
expect(transaction).not_to receive(:increment).with(:gitlab_transaction_db_count_total, 1, { db_config_name: db_config_name })
expect(transaction).not_to receive(:increment).with("gitlab_transaction_db_#{db_role}_count_total".to_sym, 1, { db_config_name: db_config_name }) if db_role
2021-04-17 20:07:23 +05:30
end
if record_write_query
2021-10-27 15:23:28 +05:30
expect(transaction).to receive(:increment).with(:gitlab_transaction_db_write_count_total, 1, { db_config_name: db_config_name })
2021-04-17 20:07:23 +05:30
else
2021-10-27 15:23:28 +05:30
expect(transaction).not_to receive(:increment).with(:gitlab_transaction_db_write_count_total, 1, { db_config_name: db_config_name })
2021-04-17 20:07:23 +05:30
end
if record_cached_query
2021-10-27 15:23:28 +05:30
expect(transaction).to receive(:increment).with(:gitlab_transaction_db_cached_count_total, 1, { db_config_name: db_config_name })
expect(transaction).to receive(:increment).with("gitlab_transaction_db_#{db_role}_cached_count_total".to_sym, 1, { db_config_name: db_config_name }) if db_role
2021-04-17 20:07:23 +05:30
else
2021-10-27 15:23:28 +05:30
expect(transaction).not_to receive(:increment).with(:gitlab_transaction_db_cached_count_total, 1, { db_config_name: db_config_name })
expect(transaction).not_to receive(:increment).with("gitlab_transaction_db_#{db_role}_cached_count_total".to_sym, 1, { db_config_name: db_config_name }) if db_role
2021-04-17 20:07:23 +05:30
end
2021-04-29 21:17:54 +05:30
if record_wal_query
2021-09-30 23:02:18 +05:30
if db_role
2021-10-27 15:23:28 +05:30
expect(transaction).to receive(:increment).with("gitlab_transaction_db_#{db_role}_wal_count_total".to_sym, 1, { db_config_name: db_config_name })
expect(transaction).to receive(:increment).with("gitlab_transaction_db_#{db_role}_wal_cached_count_total".to_sym, 1, { db_config_name: db_config_name }) if record_cached_query
2021-09-30 23:02:18 +05:30
end
2021-04-29 21:17:54 +05:30
else
2021-10-27 15:23:28 +05:30
expect(transaction).not_to receive(:increment).with("gitlab_transaction_db_#{db_role}_wal_count_total".to_sym, 1, { db_config_name: db_config_name }) if db_role
2021-04-29 21:17:54 +05:30
end
2021-04-17 20:07:23 +05:30
subscriber.sql(event)
end
it 'observes sql_duration metric' do
if record_query
2021-10-27 15:23:28 +05:30
expect(transaction).to receive(:observe).with(:gitlab_sql_duration_seconds, 0.002, { db_config_name: db_config_name })
expect(transaction).to receive(:observe).with("gitlab_sql_#{db_role}_duration_seconds".to_sym, 0.002, { db_config_name: db_config_name }) if db_role
2021-04-17 20:07:23 +05:30
else
expect(transaction).not_to receive(:observe)
end
subscriber.sql(event)
end
end
RSpec.shared_examples 'record ActiveRecord metrics' do |db_role|
context 'when both web and background transaction are available' do
let(:transaction) { double('Gitlab::Metrics::WebTransaction') }
let(:background_transaction) { double('Gitlab::Metrics::WebTransaction') }
before do
allow(::Gitlab::Metrics::WebTransaction).to receive(:current)
.and_return(transaction)
allow(::Gitlab::Metrics::BackgroundTransaction).to receive(:current)
.and_return(background_transaction)
allow(transaction).to receive(:increment)
allow(transaction).to receive(:observe)
end
it_behaves_like 'record ActiveRecord metrics in a metrics transaction', db_role
it 'captures the metrics for web only' do
expect(background_transaction).not_to receive(:observe)
expect(background_transaction).not_to receive(:increment)
subscriber.sql(event)
end
end
context 'when web transaction is available' do
let(:transaction) { double('Gitlab::Metrics::WebTransaction') }
before do
allow(::Gitlab::Metrics::WebTransaction).to receive(:current)
.and_return(transaction)
allow(::Gitlab::Metrics::BackgroundTransaction).to receive(:current)
.and_return(nil)
allow(transaction).to receive(:increment)
allow(transaction).to receive(:observe)
end
it_behaves_like 'record ActiveRecord metrics in a metrics transaction', db_role
end
context 'when background transaction is available' do
let(:transaction) { double('Gitlab::Metrics::BackgroundTransaction') }
before do
allow(::Gitlab::Metrics::WebTransaction).to receive(:current)
.and_return(nil)
allow(::Gitlab::Metrics::BackgroundTransaction).to receive(:current)
.and_return(transaction)
allow(transaction).to receive(:increment)
allow(transaction).to receive(:observe)
end
it_behaves_like 'record ActiveRecord metrics in a metrics transaction', db_role
end
end