I am trying to configure Java Melody so it will monitor JDBC connections in JIRA but so far I wasn't able to find the right configuration to make it work with my postgresql connection.
I tried to follow the guide from https://code.google.com/p/javamelody/wiki/AtlassianPluginbut it still doesn't work. Even worse I do had to add an additonal DB connection inside server.xml for the igrid plugin, but that's in a different section, not inside context.
Can someone copy/paste a configuration that works with Melody? server.xml and dbcofig.xml (obviously you may want to remove the passwords or hostnames). Thank you.
In Server.xml
----------------------------------------------------------------------------------------------------------
<Engine name="Catalina" defaultHost="localhost">
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
<Context path="" docBase="${catalina.home}/atlassian-jira" reloadable="false" useHttpOnly="true">
<Resource name="UserTransaction" auth="Container" type="javax.transaction.UserTransaction"
factory="org.objectweb.jotm.UserTransactionFactory" jotm.timeout="60"/>
<Manager pathname=""/>
<Resource name="jdbc/JiraDS" auth="Container" type="javax.sql.DataSource"
username="jira_6.2"
password="root"
driverClassName="org.postgresql.Driver"
url="jdbc:postgresql://localhost:5432/jira_6.2"
maxActive="20"
maxIdle="20"
validationQuery="select version()"/>
</Context>
</Host>
---------------------------------------------------------------------------------------------------------
In dbconfig.xml
---------------------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<jira-database-config>
<name>defaultDS</name>
<delegator-name>default</delegator-name>
<database-type>postgres72</database-type>
<schema-name>public</schema-name>
<jndi-datasource><jndi-name>java:comp/env/jdbc/JiraDS</jndi-name></jndi-datasource>
</jira-database-config>
I tried to configurea round with and l can fine any answers
thanks
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.