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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-03-16 21:18:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-16 21:18:33 +0300
commitf64a639bcfa1fc2bc89ca7db268f594306edfd7c (patch)
treea2c3c2ebcc3b45e596949db485d6ed18ffaacfa1 /lib/gitlab/metrics/background_transaction.rb
parentbfbc3e0d6583ea1a91f627528bedc3d65ba4b10f (diff)
Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40
Diffstat (limited to 'lib/gitlab/metrics/background_transaction.rb')
-rw-r--r--lib/gitlab/metrics/background_transaction.rb49
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/gitlab/metrics/background_transaction.rb b/lib/gitlab/metrics/background_transaction.rb
new file mode 100644
index 00000000000..3dda68bf93f
--- /dev/null
+++ b/lib/gitlab/metrics/background_transaction.rb
@@ -0,0 +1,49 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Metrics
+ class BackgroundTransaction < Transaction
+ # Separate web transaction instance and background transaction instance
+ BACKGROUND_THREAD_KEY = :_gitlab_metrics_background_transaction
+ BACKGROUND_BASE_LABEL_KEYS = %i(endpoint_id feature_category).freeze
+
+ class << self
+ def current
+ Thread.current[BACKGROUND_THREAD_KEY]
+ end
+
+ def prometheus_metric(name, type, &block)
+ fetch_metric(type, name) do
+ # set default metric options
+ docstring "#{name.to_s.humanize} #{type}"
+
+ evaluate(&block)
+ # always filter sensitive labels and merge with base ones
+ label_keys BACKGROUND_BASE_LABEL_KEYS | (label_keys - ::Gitlab::Metrics::Transaction::FILTERED_LABEL_KEYS)
+ end
+ end
+ end
+
+ def run
+ Thread.current[BACKGROUND_THREAD_KEY] = self
+
+ yield
+ ensure
+ Thread.current[BACKGROUND_THREAD_KEY] = nil
+ end
+
+ def labels
+ @labels ||= {
+ endpoint_id: current_context&.get_attribute(:caller_id),
+ feature_category: current_context&.get_attribute(:feature_category)
+ }
+ end
+
+ private
+
+ def current_context
+ Labkit::Context.current
+ end
+ end
+ end
+end