APM has upgraded to 5.9.9, traces from the Response Time Breakdown Explorer could not be run, see attached screenshot.
The following exception could be seen in FMS log.
2016-03-02 15:28:59.666 ERROR [cwnyfchqpj:1497208978145695053937133] com.quest.wcf.core.module.function.FunctionManager - Error executing script id=system:apm_application_root_custom_apps_transactions_trace.collectTracesTask name="'Collect Traces Task' from the System module APM/Application Root/Custom Applications/Transactions/Trace"
message: com.quest.nitro.service.sl.interfaces.scripting.ScriptingException: com.quest.nitro.service.sl.interfaces.scripting.ScriptAbortException: com.quest.wcf.datasupport.progress.ProgressException
As a workaround please run the following script through console script.
def nexuses = #!NexusAgent: runningState.index = 5#.topologyObjects ?: [];
if (nexuses?.size() > 1) {
return "There's more than 1 running Nexus agent. Abort";
} else if (nexuses?.size() != 1) {
return "There's no running Nexus. Abort";
}
def nexus = nexuses.iterator().next();
def ts = server.TopologyService;
def pasAgents = (#!PerformaSureAgent: nexusAgent = $null#.topologyObjects ?: []).collect {pasAgent ->
def shell = ts.getObjectShell(pasAgent);
shell.set('nexusAgent', nexus);
return shell;
};
ts.mergeData(pasAgents);