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

tracing.rb « views « peek « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94726a498ea7980f40efcd842f92a11fc9b6108c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Peek
  module Views
    class Tracing < View
      def results
        tracing_url = Labkit::Tracing.tracing_url(Gitlab.process_name)

        { tracing_url: tracing_url }
      end
    end
  end
end