debian-mirror-gitlab/lib/gitlab/metrics/subscribers/action_view.rb

49 lines
1.2 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
module Gitlab
module Metrics
module Subscribers
# Class for tracking the rendering timings of views.
class ActionView < ActiveSupport::Subscriber
attach_to :action_view
2019-12-04 20:38:33 +05:30
SERIES = 'views'
def render_template(event)
track(event) if current_transaction
end
alias_method :render_view, :render_template
private
def track(event)
2020-05-24 23:13:21 +05:30
tags = tags_for(event)
2020-10-24 23:57:45 +05:30
current_transaction.observe(:gitlab_view_rendering_duration_seconds, event.duration, tags) do
docstring 'View rendering time'
label_keys %i(view)
buckets [0.001, 0.01, 0.1, 1, 10.0]
with_feature :prometheus_metrics_view_instrumentation
end
current_transaction.increment(:gitlab_transaction_view_duration_total, event.duration)
end
def relative_path(path)
2020-03-13 15:44:24 +05:30
path.gsub(%r{^#{Rails.root}/?}, '')
end
def tags_for(event)
path = relative_path(event.payload[:identifier])
{ view: path }
end
def current_transaction
2021-12-11 22:18:48 +05:30
::Gitlab::Metrics::WebTransaction.current
end
end
end
end
end