summaryrefslogtreecommitdiff
path: root/lib/peek/views/tracing.rb
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