Method: ElasticAPM::Config::Options::InstanceMethods#load_schema

Defined in:
lib/elastic_apm/config/options.rb

#load_schemaObject

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.



111
112
113
114
115
# File 'lib/elastic_apm/config/options.rb', line 111

def load_schema
  Hash[self.class.schema.map do |key, args|
    [key, Option.new(key, **args)]
  end]
end