예제 #1
0
 @Nullable
 Trace getFullTrace(String agentId, String traceId) throws Exception {
   ConnectedAgent connectedAgent = connectedAgents.get(agentId);
   if (connectedAgent == null) {
     throw new AgentNotConnectedException();
   }
   return connectedAgent.getFullTrace(traceId);
 }