summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2018-03-19 21:27:11 +0000
committerRobert Speicher <robert@gitlab.com>2018-03-19 21:27:11 +0000
commit956bd6a45861dccc40591e02cf36e895a6fc4f5b (patch)
tree204b51914ffd00e75b042eaf26b0ab76d08bc1f7 /lib
parent09ae0071da1e0284a7757153da977516c385118d (diff)
parenta200619d14bf1d90c21503ec358a30ca84d5337f (diff)
downloadgitlab-ce-956bd6a45861dccc40591e02cf36e895a6fc4f5b.tar.gz
Merge branch 'ajax-requests-in-performance-bar' into 'master'
Show Ajax requests in performance bar Closes #43925 See merge request gitlab-org/gitlab-ce!17742
Diffstat (limited to 'lib')
-rw-r--r--lib/peek/views/host.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/peek/views/host.rb b/lib/peek/views/host.rb
new file mode 100644
index 00000000000..43c8a35c7ea
--- /dev/null
+++ b/lib/peek/views/host.rb
@@ -0,0 +1,9 @@
+module Peek
+ module Views
+ class Host < View
+ def results
+ { hostname: Gitlab::Environment.hostname }
+ end
+ end
+ end
+end