debian-mirror-gitlab/lib/peek/views/tracing.rb
2019-05-18 00:54:41 +05:30

14 lines
200 B
Ruby

# frozen_string_literal: true
module Peek
module Views
class Tracing < View
def results
{
tracing_url: Gitlab::Tracing.tracing_url
}
end
end
end
end