Monitor is UP, Background transactions visible, but Web shows "No data" and KPIs (Apdex, Response Time, Throughput) are missing.
View BGT metrics at: APM → Your APM Insight Application or Instance → Transactions → Background
If BGT auto-discovery is not capturing your application methods (e.g., short-lived JVMs, custom frameworks), use Custom Instrumentation.
Configure via UI: APM → Your APM Insight Application or Instance → Monitor Actions → Edit → Custom Instrumentation
Instrument specific classes and methods:
Syntax: package/ClassName : method1, method2 : ComponentName
Example:
| Configuration | Description |
|---|---|
| com/manageengine/apm/BatchProcessor : runJob, processData : BatchJobs | Specific methods with component name |
| com/manageengine/apm/DataSync : syncRecords : DataSync | Single method with component name |
| com/manageengine/apm/ReportGenerator : : Reports | All methods in class with component name |
| com/manageengine/apm/Scheduler : : | All methods in class (default component) |
Instrument all classes under a package:
Syntax: package/.* : : ComponentName
Example:
| Configuration | Description |
|---|---|
| com/manageengine/apm/batch/.* : : BatchProcessing | All classes under com.manageengine.apm.batch |
| com/manageengine/apm/workers/.* : : | All classes under com.manageengine.apm.workers (default component) |
instrumentation.conf directly.