# File lib/new_relic/agent/http_clients/uri_util.rb, line 41
        def self.strip_query_string(fragment)
          if(fragment.include?(QUESTION_MARK))
            fragment.split(QUESTION_MARK).first
          else
            fragment
          end
        end