Agent logs are filled with errors as the following:
DATE/TIME [ERROR] [IntroscopeAgent.Agent] A problem occurred while attempting to Introscope-enable org/jboss/weldx/transaction/UserTransaction$-11111111$Proxy$_$$_Weld$Proxy$: Invalid class file DATE/TIME [ERROR] [IntroscopeAgent.Agent] A problem occurred while attempting to Introscope-enable org/jboss/weld/security/Principal$-11111111$Proxy$_$$_Weld$Proxy$: Invalid class file
The "-" (hyphen) is an invalid character for a Java class name. Per the Java specifications,
you cannot use an hyphen (-) as part of a Java class file name. In the above error message,
you can see this where it says -11111111.
The solution is removing the - in the monitored Java class names.