Welcome to mirror list, hosted at ThFree Co, Russian Federation.

redis_client_middleware.rb « instrumentation « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a49d8370d4cb06f09ab3ef043d18d713de3d5df4 (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
# frozen_string_literal: true

# This module references https://github.com/redis-rb/redis-client#instrumentation-and-middlewares
# implementing `call`, and `call_pipelined`.
module Gitlab
  module Instrumentation
    module RedisClientMiddleware
      include RedisHelper

      def call(command, redis_config)
        instrumentation = instrumentation_class(redis_config)

        result = instrument_call([command], instrumentation) do
          super
        end

        measure_io(command, result, instrumentation) if ::RequestStore.active?

        result
      end

      def call_pipelined(commands, redis_config)
        instrumentation = instrumentation_class(redis_config)

        result = instrument_call(commands, instrumentation, true) do
          super
        end

        measure_io(commands, result, instrumentation) if ::RequestStore.active?

        result
      end

      private

      def measure_io(command, result, instrumentation)
        measure_write_size(command, instrumentation)
        measure_read_size(result, instrumentation)
      end

      def instrumentation_class(config)
        Gitlab::Instrumentation::Redis.storage_hash[config.custom[:instrumentation_class]]
      end
    end
  end
end