debian-mirror-gitlab/lib/peek/views/tracing.rb

14 lines
238 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
module Peek
module Views
class Tracing < View
def results
2019-07-31 22:56:46 +05:30
tracing_url = Labkit::Tracing.tracing_url(Gitlab.process_name)
{ tracing_url: tracing_url }
2019-07-07 11:18:12 +05:30
end
end
end
end