File: tracing_common.rb

package info (click to toggle)
ruby-gitlab-labkit 0.36.1-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 444 kB
  • sloc: ruby: 1,705; makefile: 6
file content (21 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require "active_support/concern"
require "active_support/notifications"

module Labkit
  module Tracing
    # TracingCommon is a mixin for providing instrumentation
    # functionality for the instrumentation classes based on
    # ActiveSupport::Notifications
    module TracingCommon
      extend ::ActiveSupport::Concern

      class_methods do
        def create_unsubscriber(subscriptions)
          -> { subscriptions.each { |subscriber| ::ActiveSupport::Notifications.unsubscribe(subscriber) } }
        end
      end
    end
  end
end