summaryrefslogtreecommitdiff
path: root/lib/peek/views/detailed_view.rb
blob: f4ca1cb507526bebb9c3cd500db2d2a6c7f98993 (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
49
50
51
52
53
# frozen_string_literal: true

module Peek
  module Views
    class DetailedView < View
      def results
        {
          duration: formatted_duration,
          calls: calls,
          details: details
        }
      end

      def detail_store
        ::Gitlab::SafeRequestStore["#{key}_call_details"] ||= []
      end

      private

      def duration
        detail_store.map { |entry| entry[:duration] }.sum # rubocop:disable CodeReuse/ActiveRecord
      end

      def calls
        detail_store.count
      end

      def call_details
        detail_store
      end

      def format_call_details(call)
        call.merge(duration: (call[:duration] * 1000).round(3))
      end

      def details
        call_details
          .sort { |a, b| b[:duration] <=> a[:duration] }
          .map(&method(:format_call_details))
      end

      def formatted_duration
        ms = duration * 1000

        if ms >= 1000
          "%.2fms" % ms
        else
          "%.0fms" % ms
        end
      end
    end
  end
end