Ejemplo n.º 1
0
 HeapDumpFileInfo heapDump(String agentId, String directory) throws Exception {
   ConnectedAgent connectedAgent = connectedAgents.get(agentId);
   if (connectedAgent == null) {
     throw new AgentNotConnectedException();
   }
   return connectedAgent.heapDump(directory);
 }