we have installed appd on a resin container and multiple jvms are running .
Under Resin.conf We have added , and we have only one resin.conf to able to run 2 JVM's
<jvm-arg>-javaagent:/local/apps/appdynamics/appagent/javaagent.jar</jvm-arg>
but in the Appd dashboard we see only once instance running. how can we see the other instance also.
Hello prashanth.gona,
I am not familiar with resin.conf, but from what I can understand, it's an XML configuration file. It seems like you'll have to configure this way:
1. On the server, create two folder structures that each contain the files for an App Agent:
/local/apps/appdynamics/appage
/local/apps/appdynamics/appagent2
2. In your resin.conf, if you have two JVMs, you probably already have two XML tags for individual servers:
<abc.com>
<server id="JVM01">
<jvm-arg>-javaagent:/local/apps/appdynamics/appage
</server>
<server id="JVM02">
<jvm-arg>-javaagent:/local/apps/appdynamics/appage
</server>
</abc.com>
3. Set the proper application name in controller-info.conf that you want to see in the AppDynamics UI console:
/local/apps/appdynamics/appage
/local/apps/appdynamics/appage
Hope that answers your question.
Joey
Thanks joey , let me try and will let you know if it worked.....