On 5/9/05, Gabriel Belingueres <[EMAIL PROTECTED]> wrote:
> Hi,
> Are there any DBCP monitoring tool that allow me to monitor how many open
> connections (and other stats) does DBCP holding?
With Tomcat 5.5.4+, DBCP datasources should have an associated MBean,
with all the us
lect sid from v$session
where program = 'JDBC Thin Client')
order by b.name;
To get open cursors:
select * from v$open_cursor
where sid in (select sid from v$session
where program = 'JDBC Thin Client');
Regards,
Jimmy Ray
--- Gabriel Belingueres <[EMAIL PROTECTED]> w
Hi,
Are there any DBCP monitoring tool that allow me to monitor how many open
connections (and other stats) does DBCP holding?
TIA,
Gabriel
Hi,
Are there any DBCP monitoring tool that allow me to monitor how many open
connections (and other stats) does DBCP holding?
TIA,
Gabriel
nal Message-
>From: Antony Paul [mailto:[EMAIL PROTECTED]
>Sent: Thursday, September 09, 2004 1:48 AM
>To: [EMAIL PROTECTED]
>Subject: DBCP - monitoring connections
>
>Hi all,
>Is there any interface available with DBCP for monitoring no of
active
>connections, c
Hi all,
Is there any interface available with DBCP for monitoring no of active
connections, connections requested, no of rejected connection
requests,connections removed from pool. I should be capable of taking
samples every 1 minute or so.
Or is it possible to write a class which queries t