summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/migrations/observers.rb
blob: b890e62c2d0218b999b081eb0d3fca00ad2e752d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Gitlab
  module Database
    module Migrations
      module Observers
        def self.all_observers
          [
            TotalDatabaseSizeChange,
            QueryStatistics,
            QueryLog,
            QueryDetails,
            TransactionDuration
          ]
        end
      end
    end
  end
end