Re: Monitor the QTime.

2011-02-16 Thread Otis Gospodnetic
r - Lucene - Nutch Lucene ecosystem search :: http://search-lucene.com/ - Original Message > From: Gora Mohanty > To: solr-user@lucene.apache.org > Sent: Sun, February 13, 2011 11:14:04 PM > Subject: Re: Monitor the QTime. > > On Mon, Feb 14, 2011 at 8:46 AM, Otis Gos

Re: Monitor the QTime.

2011-02-14 Thread Gora Mohanty
On Sun, Feb 13, 2011 at 7:54 AM, Lance Norskog wrote: > If you're a unix shell scripting wiz, here are a few strategies. > > Tail the logfile and filter for the string 'QTime'. The number is the > very last string in the line. So, strip the text between the timestamp > and the number- sort by the

Re: Monitor the QTime.

2011-02-13 Thread Gora Mohanty
On Mon, Feb 14, 2011 at 8:46 AM, Otis Gospodnetic wrote: > I've recently used a jmx console tool recently, which let's you access and > browse jmx from a simple shell that you start from command line.  Took me 5 > minutes to get it and get info from jmx. [...] Could you share which tool this is?

Re: Monitor the QTime.

2011-02-13 Thread Otis Gospodnetic
ch :: http://search-lucene.com/ - Original Message > From: Gora Mohanty > To: solr-user@lucene.apache.org > Sent: Sat, February 12, 2011 4:51:48 AM > Subject: Re: Monitor the QTime. > > On Sat, Feb 12, 2011 at 4:54 AM, Stijn Vanhoorelbeke > wrote: > [...] >

Re: Monitor the QTime.

2011-02-12 Thread Lance Norskog
If you're a unix shell scripting wiz, here are a few strategies. Tail the logfile and filter for the string 'QTime'. The number is the very last string in the line. So, strip the text between the timestamp and the number- sort by the timestamp first and the number second. Now grab the first qtime

Re: Monitor the QTime.

2011-02-12 Thread Gora Mohanty
On Sat, Feb 12, 2011 at 4:54 AM, Stijn Vanhoorelbeke wrote: [...] > Can you access this URL from a web browser (tried but doesn't work ) ? Or > must this used in jConsole / custom made java program. Please try http://localhost:8983/solr/admin/stats.jsp (change hostname/port as needed). > Could y

Re: Monitor the QTime.

2011-02-12 Thread Gora Mohanty
On Sat, Feb 12, 2011 at 3:56 AM, Stijn Vanhoorelbeke wrote: >> QTime is, of course, specific to the query, but it is returned in the >> response XML, so one could run occasional queries to figure it out. >> Please see http://wiki.apache.org/solr/SearchHandler >> >> Regards, >> Gora >> > > Yes, thi

Re: Monitor the QTime.

2011-02-11 Thread Stijn Vanhoorelbeke
2011/2/11 Ryan McKinley > You may want to check the stats via JMX. For example, > > > http://localhost:8983/solr/core/admin/mbeans?stats=true&key=org.apache.solr.handler.StandardRequestHandler > > shows some basic stats info for the handler. > ryan Can you access this URL from a web browser (t

Re: Monitor the QTime.

2011-02-11 Thread Stijn Vanhoorelbeke
> QTime is, of course, specific to the query, but it is returned in the > response XML, so one could run occasional queries to figure it out. > Please see http://wiki.apache.org/solr/SearchHandler > > Regards, > Gora > Yes, this could be a possibility. But then the Solr cache jumps back into the p

Re: Monitor the QTime.

2011-02-11 Thread Ryan McKinley
JMX. this may be helpful: http://wiki.apache.org/solr/SolrJmx ryan On Thu, Feb 10, 2011 at 5:10 PM, Stijn Vanhoorelbeke wrote: > Hi, > > Is it possible to monitor the QTime of the queries. > I know I could enable logging - but then all of my requests are logged, > making big&nast

Re: Monitor the QTime.

2011-02-11 Thread Gora Mohanty
On Fri, Feb 11, 2011 at 3:40 AM, Stijn Vanhoorelbeke wrote: > Hi, > > Is it possible to monitor the QTime of the queries. > I know I could enable logging - but then all of my requests are logged, > making big&nasty logs. > > I just want to log the QTime periodically, l

Monitor the QTime.

2011-02-10 Thread Stijn Vanhoorelbeke
Hi, Is it possible to monitor the QTime of the queries. I know I could enable logging - but then all of my requests are logged, making big&nasty logs. I just want to log the QTime periodically, lets say once every minute. Is this possible using Solr or can this be set up in tomcat anyway?