Re: Servlet filter for Solr

2009-06-10 Thread vivek sar
I've tried both url-pattern (/*) and servlet-name in the filter mapping , but none of it seem to intercept the call. If I put (/*) only up to /solr gets intercepted. Since, I'm using multicore - calls like /solr/core0 don't get intercepted. I want both select and update to be monitored. Any ideas?

Servlet filter for Solr

2009-06-09 Thread vivek sar
Hi, I've to intercept every request to solr (search and update) and log some performance numbers. In order to do so I tried a Servlet filter and added this to Solr's web.xml, filter filter-nameIndexFilter/filter-name

Re: Servlet filter for Solr

2009-06-09 Thread Noble Paul നോബിള്‍ नोब्ळ्
if you wish to intercept read calls ,a filter is the only way. On Wed, Jun 10, 2009 at 6:35 AM, vivek sarvivex...@gmail.com wrote: Hi,  I've to intercept every request to solr (search and update) and log some performance numbers. In order to do so I tried a Servlet filter and added this to