summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorQingyu Zhao <qzhao@gitlab.com>2019-06-27 23:42:14 +1000
committerQingyu Zhao <qzhao@gitlab.com>2019-07-18 23:11:08 +1000
commit10e51ac5f7087bb9cbc495fc15195994fb8763e4 (patch)
treedb910ca437f1187f726fd60f7567592d5042673b /app/views
parent0854f18352e72c2bcc0beca601d1ea48b490d1be (diff)
downloadgitlab-ce-10e51ac5f7087bb9cbc495fc15195994fb8763e4.tar.gz
Add profile mode to extend request profilingadd-profile-mode-to-extend-request-profiling
Extend the support for "X-Profile-Token: <token>" to have an additional header that defines type of profile we are looking for, like: X-Profile-Mode: execution X-Profile-Mode: memory
Diffstat (limited to 'app/views')
-rw-r--r--app/views/admin/requests_profiles/index.html.haml3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/admin/requests_profiles/index.html.haml b/app/views/admin/requests_profiles/index.html.haml
index adfc67d66d0..86bfeef580c 100644
--- a/app/views/admin/requests_profiles/index.html.haml
+++ b/app/views/admin/requests_profiles/index.html.haml
@@ -19,7 +19,8 @@
%ul.content-list
- profiles.each do |profile|
%li
- = link_to profile.time.to_s(:long), admin_requests_profile_path(profile)
+ = link_to profile.time.to_s(:long) + ' ' + profile.profile_mode.capitalize,
+ admin_requests_profile_path(profile)
- else
%p
No profiles found