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

profile.rb « request_profiler « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f89d56903efe5bb5fa0ad0dd025b69f710c19e7e (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
module Gitlab
  module RequestProfiler
    class Profile
      attr_reader :name, :time, :request_path

      alias_method :to_param, :name

      def self.all
        Dir["#{PROFILES_DIR}/*.html"].map do |path|
          new(File.basename(path))
        end
      end

      def self.find(name)
        name_dup = name.dup
        name_dup << '.html' unless name.end_with?('.html')

        file_path = "#{PROFILES_DIR}/#{name_dup}"
        return unless File.exist?(file_path)

        new(name_dup)
      end

      def initialize(name)
        @name = name

        set_attributes
      end

      def content
        File.read("#{PROFILES_DIR}/#{name}")
      end

      private

      def set_attributes
        _, path, timestamp = name.split(/(.*)_(\d+)\.html$/)
        @request_path      = path.tr('|', '/')
        @time              = Time.at(timestamp.to_i).utc
      end
    end
  end
end