My application uses terracotta/ehcache for hibernate 2nd level cache as well as 'custom' application caching, when running the terracotta server locally and connecting to it with the developer console I can see my application and the various caches and stats. When I deploy the same setup to a different server, it seems to be working but when I connect the developer console to the remote server, I am able to see a server in the server array under the Topology node, but I do not have a 'My Application' node as I do when running it locally. Is this correct, are you not able to see this when connecting remotely or have a messed up the configuration?
<tc:tc-config xmlns:tc="http://www.terracotta.org/config"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.terracotta.org/schema/terracotta-6.xsd">
<system>
<configuration-model>production</configuration-model>
</system>
<servers>
<server host="xxx.xxx.xxx.xxx" name="MyWorkLife Test">
<data>/home/mwltest/Terracotta/server-data</data>
<logs>/home/mwltest/Terracotta/server-logs</logs>
<index>/home/mwltest/Terracotta/server-index</index>
<statistics>/home/mwltest/Terracotta/server-statistics</statistics>
<dso-port bind="127.0.0.1">9510</dso-port>
<jmx-port bind="xxx.xxx.xxx.xxx">9520</jmx-port>
<!-- <authentication/> -->
<dso>
<client-reconnect-window>120</client-reconnect-window>
<persistence>
<mode>permanent-store</mode>
</persistence>
<garbage-collection>
<enabled>true</enabled>
<verbose>false</verbose>
<interval>3600</interval>
</garbage-collection>
</dso>
</server>
<update-check>
<enabled>false</enabled>
</update-check>
</servers>
<clients>
<logs>logs-%i</logs>
</clients>
</tc:tc-config>