Method: ElasticAPM::Normalizers.build

Defined in:
lib/elastic_apm/normalizers.rb

.build(config) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



41
42
43
44
45
46
47
# File 'lib/elastic_apm/normalizers.rb', line 41

def self.build(config)
  normalizers = @registered.transform_values do |klass|
    klass.new(config)
  end

  Collection.new(normalizers)
end