Sha256: 3934c4560a533f277144d4a3131f5cf1b481ba70be3a3a7ef104dd97b81c40f1
Contents?: true
Size: 905 Bytes
Versions: 26
Compression:
Stored size: 905 Bytes
Contents
# This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # frozen_string_literal: true require 'new_relic/agent/instrumentation/notifications_subscriber' module NewRelic module Agent module Instrumentation class ActionMailboxSubscriber < NotificationsSubscriber def metric_name(name, payload) mailbox = payload[:mailbox].class.name method = method_from_name(name) "Ruby/ActionMailbox/#{mailbox}/#{method}" end PATTERN = /\A([^\.]*)\.action_mailbox\z/ METHOD_NAME_MAPPING = Hash.new do |h, k| if PATTERN =~ k h[k] = $1 else h[k] = NewRelic::UNKNOWN end end def method_from_name(name) METHOD_NAME_MAPPING[name] end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems