summaryrefslogtreecommitdiff
path: root/lib/gitlab/instrumentation/global_search_api.rb
blob: d475a58c36c88003488c2f3393747f605627c851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# frozen_string_literal: true

module Gitlab
  module Instrumentation
    class GlobalSearchApi
      TYPE = 'meta.search.type'
      LEVEL = 'meta.search.level'
      SCOPE = 'meta.search.scope'
      SEARCH_DURATION_S = :global_search_duration_s

      InstrumentationStorage = ::Gitlab::Instrumentation::Storage

      def self.get_type
        InstrumentationStorage[TYPE]
      end

      def self.get_level
        InstrumentationStorage[LEVEL]
      end

      def self.get_scope
        InstrumentationStorage[SCOPE]
      end

      def self.get_search_duration_s
        InstrumentationStorage[SEARCH_DURATION_S]
      end

      def self.payload
        {
          TYPE => get_type,
          LEVEL => get_level,
          SCOPE => get_scope,
          SEARCH_DURATION_S => get_search_duration_s
        }.compact
      end

      def self.set_information(type:, level:, scope:, search_duration_s:)
        if InstrumentationStorage.active?
          InstrumentationStorage[TYPE] = type
          InstrumentationStorage[LEVEL] = level
          InstrumentationStorage[SCOPE] = scope
          InstrumentationStorage[SEARCH_DURATION_S] = search_duration_s
        end
      end
    end
  end
end