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: 0de32a8fddac1a7a7af912ab9b15866a4c5c6166 (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: Gitlab::Tracing.tracing_url
        }
      end
    end
  end
end