Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 56597 invoked from network); 13 Jun 2008 08:46:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Jun 2008 08:46:17 -0000 Received: (qmail 96702 invoked by uid 500); 13 Jun 2008 08:46:07 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 96670 invoked by uid 500); 13 Jun 2008 08:46:07 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 96659 invoked by uid 99); 13 Jun 2008 08:46:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jun 2008 01:46:07 -0700 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [195.227.30.149] (HELO mailserver.kippdata.de) (195.227.30.149) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jun 2008 08:45:17 +0000 Received: from [195.227.30.148] (larix [195.227.30.148]) by mailserver.kippdata.de (8.13.5/8.13.5) with ESMTP id m5D8c2Yk019822 for ; Fri, 13 Jun 2008 10:38:04 +0200 (CEST) Message-ID: <485231EA.4020600@kippdata.de> Date: Fri, 13 Jun 2008 10:38:02 +0200 From: Rainer Jung User-Agent: Thunderbird 2.0.0.6 (X11/20070802) MIME-Version: 1.0 To: Tomcat Users List Subject: Re: GlobalRequestProcessor get Response time? References: <4851C6A2.4090107@goldigolino.com.es> In-Reply-To: <4851C6A2.4090107@goldigolino.com.es> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org ubekhet wrote: > Hi folks, > > Sorry for insisting this question, but I want to know how I can > monitoring the Response Time for all requests coming for specific port. > > I used GlobalRequestProcessor and RequestProcessor for getting > prcessingTime, but I not sure what's the differents between both. Which > one I have to use for getting what I want? GlobalRequestProcessor: one per Konnektor (=ThreadPool) It contains the sums of request counters for all threads in this thread pool (how many requests, errors, sum of response times in milliseconds etc.) Usually those are what you want. RequestProcessor: In theory one per thread. Counters are the same, but contain sum for requests handled by the respective thread. Those are not very useful, because they vanish, if threads get removed and the conection between them and threads changes when new threads get created. Regards, Rainer --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org