# File lib/new_relic/agent/configuration/default_source.rb, line 156
        def self.profiling_available
          Proc.new {
            begin
              require 'ruby-prof'
              true
            rescue LoadError
              false
            end
          }
        end