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/app
diff options
context:
space:
mode:
authorPawel Chojnacki <pawel@chojnacki.ws>2017-05-23 17:23:43 +0300
committerPawel Chojnacki <pawel@chojnacki.ws>2017-06-02 20:45:58 +0300
commit770f07cd5c68075bb261f4b6139c92b2ac9309c0 (patch)
treea62d6a11602734a88db1b7f5682ddfed2e9e9b99 /app
parent394e962e52efdff36e3fae974ea51e9e2883f382 (diff)
Make login_counter instance variable instead of class one.
+ remove unecessarey require + fix small formatiing issues
Diffstat (limited to 'app')
-rw-r--r--app/controllers/health_controller.rb2
-rw-r--r--app/controllers/metrics_controller.rb4
-rw-r--r--app/controllers/sessions_controller.rb4
3 files changed, 5 insertions, 5 deletions
diff --git a/app/controllers/health_controller.rb b/app/controllers/health_controller.rb
index b646216caa2..abc832e6ddc 100644
--- a/app/controllers/health_controller.rb
+++ b/app/controllers/health_controller.rb
@@ -1,5 +1,3 @@
-require 'prometheus/client/formats/text'
-
class HealthController < ActionController::Base
protect_from_forgery with: :exception
include RequiresHealthToken
diff --git a/app/controllers/metrics_controller.rb b/app/controllers/metrics_controller.rb
index 7191a66fe46..9bcd6f96b34 100644
--- a/app/controllers/metrics_controller.rb
+++ b/app/controllers/metrics_controller.rb
@@ -1,7 +1,9 @@
class MetricsController < ActionController::Base
+ include RequiresHealthToken
+
protect_from_forgery with: :exception
+
before_action :validate_prometheus_metrics
- include RequiresHealthToken
def metrics
response = "#{metrics_service.health_metrics_text}\n#{metrics_service.prometheus_metrics_text}"
diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb
index eaed878283e..fc9de30f256 100644
--- a/app/controllers/sessions_controller.rb
+++ b/app/controllers/sessions_controller.rb
@@ -47,7 +47,7 @@ class SessionsController < Devise::SessionsController
private
- def self.login_counter
+ def login_counter
@login_counter ||= Gitlab::Metrics.counter(:user_session_logins, 'User logins count')
end
@@ -129,7 +129,7 @@ class SessionsController < Devise::SessionsController
end
def log_user_activity(user)
- SessionsController.login_counter.increment
+ login_counter.increment
Users::ActivityService.new(user, 'login').execute
end