# File lib/new_relic/agent/configuration/environment_source.rb, line 65
        def set_values_from_new_relic_environment_variables
          nr_env_var_keys = collect_new_relic_environment_variable_keys

          nr_env_var_keys.each do |key|
            next if SPECIAL_CASE_KEYS.include?(key.upcase)
            set_value_from_environment_variable(key)
          end
        end