summaryrefslogtreecommitdiff
path: root/lib/gitlab
diff options
context:
space:
mode:
authorPawel Chojnacki <pawel@chojnacki.ws>2017-10-16 15:57:33 +0200
committerPawel Chojnacki <pawel@chojnacki.ws>2017-11-02 18:11:44 +0100
commit929418da32bef6e56c363a0f7bb1ffe27edf511c (patch)
treef84124fcbea9d66a50cfaf29166e509009e80556 /lib/gitlab
parent99881bb7b035429c689055c396897e8e04d31af1 (diff)
downloadgitlab-ce-929418da32bef6e56c363a0f7bb1ffe27edf511c.tar.gz
Web/Sidekiq transaction split
Diffstat (limited to 'lib/gitlab')
-rw-r--r--lib/gitlab/metrics/base_transaction.rb176
-rw-r--r--lib/gitlab/metrics/rack_middleware.rb2
-rw-r--r--lib/gitlab/metrics/web_transaction.rb85
3 files changed, 262 insertions, 1 deletions
diff --git a/lib/gitlab/metrics/base_transaction.rb b/lib/gitlab/metrics/base_transaction.rb
new file mode 100644
index 00000000000..a783bfeccd5
--- /dev/null
+++ b/lib/gitlab/metrics/base_transaction.rb
@@ -0,0 +1,176 @@
+module Gitlab
+ module Metrics
+ # Class for storing metrics information of a single transaction.
+ class BaseTransaction
+ BASE_LABELS = { }.freeze
+
+ THREAD_KEY = :_gitlab_metrics_transaction
+
+ # The series to store events (e.g. Git pushes) in.
+ EVENT_SERIES = 'events'.freeze
+
+ attr_reader :tags, :values, :method, :metrics
+
+ def self.current
+ Thread.current[THREAD_KEY]
+ end
+
+ # action - A String describing the action performed, usually the class
+ # plus method name.
+ def initialize(env)
+ @metrics = []
+ @methods = {}
+
+ @started_at = nil
+ @finished_at = nil
+
+ @values = Hash.new(0)
+ @tags = {}
+ @env = env
+
+ @memory_before = 0
+ @memory_after = 0
+ end
+
+ def duration
+ @finished_at ? (@finished_at - @started_at) : 0.0
+ end
+
+ def allocated_memory
+ @memory_after - @memory_before
+ end
+
+ def labels
+ {}
+ end
+
+ def run
+ Thread.current[THREAD_KEY] = self
+
+ @memory_before = System.memory_usage
+ @started_at = System.monotonic_time
+
+ yield
+ ensure
+ @memory_after = System.memory_usage
+ @finished_at = System.monotonic_time
+
+ self.class.metric_transaction_duration_seconds.observe(labels, duration * 1000)
+ self.class.metric_transaction_allocated_memory_bytes.observe(labels, allocated_memory * 1024.0)
+
+ Thread.current[THREAD_KEY] = nil
+ end
+
+ def add_metric(series, values, tags = {})
+ @metrics << Metric.new("#{Metrics.series_prefix}#{series}", values, tags)
+ end
+
+ # Tracks a business level event
+ #
+ # Business level events including events such as Git pushes, Emails being
+ # sent, etc.
+ #
+ # event_name - The name of the event (e.g. "git_push").
+ # tags - A set of tags to attach to the event.
+ def add_event(event_name, tags = {})
+ self.class.metric_event_counter(event_name, tags).increment(tags.merge(labels))
+ @metrics << Metric.new(EVENT_SERIES, { count: 1 }, tags.merge(event: event_name), :event)
+ end
+
+ # Returns a MethodCall object for the given name.
+ def method_call_for(name, module_name, method_name)
+ unless method = @methods[name]
+ @methods[name] = method = MethodCall.new(name, module_name, method_name, self)
+ end
+
+ method
+ end
+
+ def increment(name, value, use_prometheus = true)
+ self.class.metric_transaction_counter(name).increment(labels, value) if use_prometheus
+ @values[name] += value
+ end
+
+ def set(name, value, use_prometheus = true)
+ self.class.metric_transaction_gauge(name).set(labels, value) if use_prometheus
+ @values[name] = value
+ end
+
+ def finish
+ track_self
+ submit
+ end
+
+ def track_self
+ values = { duration: duration, allocated_memory: allocated_memory }
+
+ @values.each do |name, value|
+ values[name] = value
+ end
+
+ add_metric('transactions', values, @tags)
+ end
+
+ def submit
+ submit = @metrics.dup
+
+ @methods.each do |name, method|
+ submit << method.to_metric if method.above_threshold?
+ end
+
+ submit_hashes = submit.map do |metric|
+ hash = metric.to_hash
+
+ hash[:tags][:action] ||= action if action && !metric.event?
+
+ hash
+ end
+
+ Metrics.submit_metrics(submit_hashes)
+ end
+
+ private
+
+ def self.metric_transaction_duration_seconds
+ @metric_transaction_duration_seconds ||= Gitlab::Metrics.histogram(
+ :gitlab_transaction_duration_seconds,
+ 'Transaction duration',
+ BASE_LABELS,
+ [0.001, 0.002, 0.005, 0.01, 0.02, 0.05, 0.1, 0.500, 2.0, 10.0]
+ )
+ end
+
+ def self.metric_transaction_allocated_memory_bytes
+ @metric_transaction_allocated_memory_bytes ||= Gitlab::Metrics.histogram(
+ :gitlab_transaction_allocated_memory_bytes,
+ 'Transaction allocated memory bytes',
+ BASE_LABELS,
+ [1000, 10000, 20000, 500000, 1000000, 2000000, 5000000, 10000000, 20000000, 100000000]
+ )
+ end
+
+ def self.metric_event_counter(event_name, tags)
+ @metric_event_counters ||= {}
+ @metric_event_counters[event_name] ||= Gitlab::Metrics.counter(
+ "gitlab_transaction_event_#{event_name}_total".to_sym,
+ "Transaction event #{event_name} counter",
+ tags.merge(BASE_LABELS)
+ )
+ end
+
+ def self.metric_transaction_counter(name)
+ @metric_transaction_counters ||= {}
+ @metric_transaction_counters[name] ||= Gitlab::Metrics.counter(
+ "gitlab_transaction_#{name}_total".to_sym, "Transaction #{name} counter", BASE_LABELS
+ )
+ end
+
+ def self.metric_transaction_gauge(name)
+ @metric_transaction_gauges ||= {}
+ @metric_transaction_gauges[name] ||= Gitlab::Metrics.gauge(
+ "gitlab_transaction_#{name}".to_sym, "Transaction gauge #{name}", BASE_LABELS, :livesum
+ )
+ end
+ end
+ end
+end
diff --git a/lib/gitlab/metrics/rack_middleware.rb b/lib/gitlab/metrics/rack_middleware.rb
index a5aa0c49551..2d45765df3f 100644
--- a/lib/gitlab/metrics/rack_middleware.rb
+++ b/lib/gitlab/metrics/rack_middleware.rb
@@ -28,7 +28,7 @@ module Gitlab
end
def transaction_from_env(env)
- trans = Transaction.new(env)
+ trans = WebTransaction.new(env)
trans.set(:request_uri, filtered_path(env), false)
trans.set(:request_method, env['REQUEST_METHOD'], false)
diff --git a/lib/gitlab/metrics/web_transaction.rb b/lib/gitlab/metrics/web_transaction.rb
new file mode 100644
index 00000000000..e7ac9e68f9f
--- /dev/null
+++ b/lib/gitlab/metrics/web_transaction.rb
@@ -0,0 +1,85 @@
+module Gitlab
+ module Metrics
+ # Class for storing metrics information of a single transaction.
+ class WebTransaction
+ BASE_LABELS = { controller: nil, action: nil }.freeze
+ CONTROLLER_KEY = 'action_controller.instance'.freeze
+ ENDPOINT_KEY = 'api.endpoint'.freeze
+
+ CONTENT_TYPES = {
+ 'text/html' => :html,
+ 'text/plain' => :txt,
+ 'application/json' => :json,
+ 'text/js' => :js,
+ 'application/atom+xml' => :atom,
+ 'image/png' => :png,
+ 'image/jpeg' => :jpeg,
+ 'image/gif' => :gif,
+ 'image/svg+xml' => :svg
+ }.freeze
+
+ attr_reader :tags, :values, :method, :metrics
+
+ def action
+ "#{labels[:controller]}##{labels[:action]}" if labels && !labels.empty?
+ end
+
+ def labels
+ return @labels if @labels
+
+ # memoize transaction labels only source env variables were present
+ @labels = if @env[CONTROLLER_KEY]
+ labels_from_controller || {}
+ elsif @env[ENDPOINT_KEY]
+ labels_from_endpoint || {}
+ end
+
+ @labels || {}
+ end
+
+ private
+
+ def labels_from_controller
+ controller = @env[CONTROLLER_KEY]
+
+ action = "#{controller.action_name}"
+ suffix = CONTENT_TYPES[controller.content_type]
+
+ if suffix && suffix != :html
+ action += ".#{suffix}"
+ end
+
+ { controller: controller.class.name, action: action }
+ end
+
+ def labels_from_endpoint
+ endpoint = @env[ENDPOINT_KEY]
+
+ begin
+ route = endpoint.route
+ rescue
+ # endpoint.route is calling env[Grape::Env::GRAPE_ROUTING_ARGS][:route_info]
+ # but env[Grape::Env::GRAPE_ROUTING_ARGS] is nil in the case of a 405 response
+ # so we're rescuing exceptions and bailing out
+ end
+
+ if route
+ path = endpoint_paths_cache[route.request_method][route.path]
+ { controller: 'Grape', action: "#{route.request_method} #{path}" }
+ end
+ end
+
+ def endpoint_paths_cache
+ @endpoint_paths_cache ||= Hash.new do |hash, http_method|
+ hash[http_method] = Hash.new do |inner_hash, raw_path|
+ inner_hash[raw_path] = endpoint_instrumentable_path(raw_path)
+ end
+ end
+ end
+
+ def endpoint_instrumentable_path(raw_path)
+ raw_path.sub('(.:format)', '').sub('/:version', '')
+ end
+ end
+ end
+end