summaryrefslogtreecommitdiff
path: root/lib/peek/views/tracing.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/peek/views/tracing.rb')
-rw-r--r--lib/peek/views/tracing.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/peek/views/tracing.rb b/lib/peek/views/tracing.rb
new file mode 100644
index 00000000000..0de32a8fdda
--- /dev/null
+++ b/lib/peek/views/tracing.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+module Peek
+ module Views
+ class Tracing < View
+ def results
+ {
+ tracing_url: Gitlab::Tracing.tracing_url
+ }
+ end
+ end
+ end
+end