Troubleshoot Recommended Data Collectors Issues

There are a few reasons why Recommended Data Collectors may not appear in the Controller UI:

  • Auto-Refresh: In the Controller UI, data under the Transaction Analytics - Recommended Data Collectorstab does not refresh automatically. If you recently created an application and do not see it in the UI, refresh your browser.
  • Deactivated Agentless Analytics: Recommended Data Collectors require Agentless Analytics. If a particular application is unavailable, confirm that Agentless Analytics is enabled for the tier or node.
  • Permission: Recommended Data Collectors enforces RBAC. Without the Configure Diagnostic Data Collectors permission, you cannot create data collectors, but you can view suggested Recommended Data Collectors for the applications that you have access to.

Field Names Display Unavailable

Field names are not available for data captured on parameters, return values, and invoked objects, such as int getNumber(intValue).

For example:

public class Calculator {
public int getArea(int width, int height) {
return width * height;
}
}
Field NameExplanation
Invoked ObjectRefers to the object on which the method is invoked. In this example, the Calculator object is being invoked. The name of the Calculator object instance is not obtained, so Invoked Object displays Unavailable.
ParametersRefers to the inputs to the method. In this example, the parameters are the width and the height. The parameter names are not obtained, so Parameters display Unavailable.
Return ValueRefers to the return value of the method. Return values do not have assigned names and Return Value displays Unavailable.