Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorLuke Bennett <lbennett@gitlab.com>2019-07-10 23:26:34 +0300
committerLuke Bennett <lbennett@gitlab.com>2019-07-12 00:29:16 +0300
commit04af424babefc4509f99fba645611992cfd6600d (patch)
treee58372869d91b96685ef74fc6a8e9bf96526cd8f /config
parent38ff44980ec1c08570aee327ebfef48f99cd4d1e (diff)
Port EE analytics route
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 50bb092ec2e..d208df62b4a 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -110,6 +110,12 @@ Rails.application.routes.draw do
draw :jira_connect
end
+ Gitlab.ee do
+ constraints(::Constraints::FeatureConstrainer.new(:analytics)) do
+ draw :analytics
+ end
+ end
+
if ENV['GITLAB_CHAOS_SECRET'] || Rails.env.development?
resource :chaos, only: [] do
get :leakmem
@@ -119,6 +125,13 @@ Rails.application.routes.draw do
get :kill
end
end
+
+ if ENV['GITLAB_ENABLE_CHAOS_ENDPOINTS']
+ get '/chaos/leakmem' => 'chaos#leakmem'
+ get '/chaos/cpuspin' => 'chaos#cpuspin'
+ get '/chaos/sleep' => 'chaos#sleep'
+ get '/chaos/kill' => 'chaos#kill'
+ end
end
concern :clusterable do