AppDynamics Application Intelligence Platform
3.8.x Documentation
The GlassFish application server versions 3.x and later uses OSGi architecture. By default, OSGi containers follow a specific model for bootstrap class delegation. Classes that are not specified in the container's CLASSPATH are not delegated to the bootstrap classloader; therefore you must configure the OSGi containers for the App Server Agent classes.
For more information see GlassFish OSGi Configuration per Domain.
To ensure that the OSGi container identifies the agent, specify the following package prefix:
org.osgi.framework.bootdelegation=com.singularity.*
This prefix follows the regular boot delegation model so that the App Server Agent classes are visible.
If you already have existing boot delegations, add "com.singularity.*" to the existing path separated by a comma. For example:
org.osgi.framework.bootdelegation=com.sun.btrace., com.singularity.
If running Eclipse Equinox under Glassfish:
1. Open the config.ini file located at <glassfish-install>/glassfish/osgi/equinox/configuration.
2. Add following package prefix to the config.ini file:
org.osgi.framework.bootdelegation=com.singularity.*
If running Eclipse Equinox with the WebSphere Application Server Liberty profile:
1. Open the bootstrap.properties file in the JVM directory <WLP_home>/usr/servers/<server_name> for editing.
2. Add the following line:
org.osgi.framework.bootdelegation=com.singularity.*
For more information see Getting Started with Equinox.
1. Open the sling.properties file. The location of the sling.properties varies depending on the Java platform.
In the Sun/Oracle implementation, the sling.properties file is located at <java.home>/lib.
2. Add following package prefix to the sling.properties file.
org.osgi.framework.bootdelegation=com.singularity.*
1. Open the config.properties file, located at <glassfish-install>/glassfish/osgi/felix/conf.
2. Add following package prefix to the config.properties file.
org.osgi.framework.bootdelegation=com.singularity.*
Add:
com.singularity.*
to the boot delegation list in the <GlassFish_Home_Directory>\glassfish\config\osgi.properties file. For example:
org.osgi.framework.bootdelgation=${eclipselink.bootdelegation}, com.sun.btrace, com.singularity.*
For JIRA 5.1.8 and newer or Confluence 5.3 and newer:
1. Update the JIRA startup script (e.g. catalina) with the following Java system property:
-Datlassian.org.osgi.framework.bootdelegation=META-INF.services,com.yourkit,com.singularity.*,com.jprofiler,com.jprofiler.*,org.apache.xerces,org.apache.xerces.*,org.apache.xalan,org.apache.xalan.*,sun.*,com.sun.jndi,com.icl.saxon,com.icl.saxon.*,javax.servlet,javax.servlet.*,com.sun.xml.bind.*
2. Update the Java options:
-javaagent:/root/AppServerAgent/javaagent.jar"
For other OSGI-based runtime containers, add the following package prefix to the appropriate OSGi configuration.
file.org.osgi.framework.bootdelegation=com.singularity.*