Since Jira 5.1 you can view the Connection Pool (dbcp) via .../secure/admin/monitor_database.jspa
Does anyone know if this data exposed in logs or REST? I'm looking to find a way to report/alert on the current connections.
I've been reading https://answers.atlassian.com/questions/662/monitoring-of-atlassian-products-performance and this may contain the solution.
If not, it looks like you can use things like javamelody and report on number of jdbc connections. Does anyone know if this gives you the same information?
netstat will give you the number of max-idle connections to your database (default 20, for us currently showing as a constant of 17), as opposed to the more useful number-of-active connections (for us <10).
It's the latter number which is more useful for seeing how busy the jira --> database connection is.
Having that number able to be graphed/monitored (as a value that could snmp'able) would be really helpful.
netstat -an|grep -c "^tcp.*:<port>.*ESTABLISHED" will be forsure what is active.
Replace <port> with your port of choice. In your case 1433
or
netstat -an|grep -c "^tcp.*:1433.*ESTABLISHED"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mike,
I think that the best way to track the connections is using a tool link netstat, checking how many connectors are using the database port.
It should be a command like:
netstat -napo | grep port_number | count | sort
Please give it a try and tell me how it goes.
Regards,
Celso Yoshioka
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
I ran this on our Jira server (running linux centos 5.6): netstat -napo | grep 1433 | wc -l | sort
It returned ~135 which is much higher than the ~3-5 our database monitoring chart shows. Is there a conversion on this or is this a whole different metric?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.