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 16:42:36 +0300
committerPawel Chojnacki <pawel@chojnacki.ws>2017-06-02 20:45:58 +0300
commit254830c1f963f344585a45d96a03985e1ec2df0e (patch)
tree2526feaa8293ca858cc9cb3c9f66a567eeb4b9f4 /app
parent466beeb31f9ede870f1e6f4e85642a375663eaf2 (diff)
Move most of MetricsController logic to MetricsService
Diffstat (limited to 'app')
-rw-r--r--app/controllers/metrics_controller.rb41
-rw-r--r--app/services/metrics_service.rb38
2 files changed, 44 insertions, 35 deletions
diff --git a/app/controllers/metrics_controller.rb b/app/controllers/metrics_controller.rb
index 8b99de06d85..7191a66fe46 100644
--- a/app/controllers/metrics_controller.rb
+++ b/app/controllers/metrics_controller.rb
@@ -1,50 +1,21 @@
-require 'prometheus/client/formats/text'
-
class MetricsController < ActionController::Base
protect_from_forgery with: :exception
+ before_action :validate_prometheus_metrics
include RequiresHealthToken
- before_action :ensure_prometheus_metrics_are_enabled
-
- CHECKS = [
- Gitlab::HealthChecks::DbCheck,
- Gitlab::HealthChecks::RedisCheck,
- Gitlab::HealthChecks::FsShardsCheck
- ].freeze
-
def metrics
- metrics_text = Prometheus::Client::Formats::Text.marshal_multiprocess(multiprocess_metrics_path)
- response = "#{health_metrics_text}\n#{metrics_text}"
+ response = "#{metrics_service.health_metrics_text}\n#{metrics_service.prometheus_metrics_text}"
render text: response, content_type: 'text/plain; version=0.0.4'
end
private
- def ensure_prometheus_metrics_are_enabled
- return render_404 unless Gitlab::Metrics.prometheus_metrics_enabled?
- end
-
- def multiprocess_metrics_path
- Rails.root.join(ENV['prometheus_multiproc_dir'])
+ def metrics_service
+ @metrics_service ||= MetricsService.new
end
- def health_metrics_text
- results = CHECKS.flat_map(&:metrics)
-
- types = results.map(&:name).uniq.map { |metric_name| "# TYPE #{metric_name} gauge" }
- metrics = results.map(&method(:metric_to_prom_line))
-
- types.concat(metrics).join("\n")
- end
-
- def metric_to_prom_line(metric)
- labels = metric.labels&.map { |key, value| "#{key}=\"#{value}\"" }&.join(',') || ''
-
- if labels.empty?
- "#{metric.name} #{metric.value}"
- else
- "#{metric.name}{#{labels}} #{metric.value}"
- end
+ def validate_prometheus_metrics
+ render_404 unless Gitlab::Metrics.prometheus_metrics_enabled?
end
end
diff --git a/app/services/metrics_service.rb b/app/services/metrics_service.rb
new file mode 100644
index 00000000000..350c3639e92
--- /dev/null
+++ b/app/services/metrics_service.rb
@@ -0,0 +1,38 @@
+require 'prometheus/client/formats/text'
+
+class MetricsService
+ CHECKS = [
+ Gitlab::HealthChecks::DbCheck,
+ Gitlab::HealthChecks::RedisCheck,
+ Gitlab::HealthChecks::FsShardsCheck
+ ].freeze
+
+ def prometheus_metrics_text
+ Prometheus::Client::Formats::Text.marshal_multiprocess(multiprocess_metrics_path)
+ end
+
+ def health_metrics_text
+ results = CHECKS.flat_map(&:metrics)
+
+ types = results.map(&:name).uniq.map { |metric_name| "# TYPE #{metric_name} gauge" }
+ metrics = results.map(&method(:metric_to_prom_line))
+
+ types.concat(metrics).join("\n")
+ end
+
+ private
+
+ def multiprocess_metrics_path
+ Rails.root.join(ENV['prometheus_multiproc_dir'])
+ end
+
+ def metric_to_prom_line(metric)
+ labels = metric.labels&.map { |key, value| "#{key}=\"#{value}\"" }&.join(',') || ''
+
+ if labels.empty?
+ "#{metric.name} #{metric.value}"
+ else
+ "#{metric.name}{#{labels}} #{metric.value}"
+ end
+ end
+end