APM Insight Java includes CompletableFuture asynchronous transaction support. This is the most useful and widely adopted method for asynchronous processing in many supported frameworks. This document explains how asynchronous processing occurs and how APM Insight monitors async functions.
A synchronous programming model typically executes programming tasks in a specific order. One task must be completed before the next can begin, which increases the waiting time for several tasks.
Asynchronous programming uses a non-blocking model, allowing tasks to be executed concurrently. Asynchronous tasks are completely independent of one another in terms of execution and initialization. Because asynchronous code does not execute in a sequential order, the server's full processing power can be utilized more efficiently.
The APM Insight Java agent has been specifically designed to monitor async tasks, allowing users to track the performance of async functions and web transactions easily.
The traces captured in APM Insight provide visibility into how asynchronous tasks are executed concurrently across your environment.
Follow the steps below to view the asynchronous calls:
![]()
We show the following metrics for async calls:
The Overall Response Time for asynchronous Java applications is often less than the total transaction time. This is because async methods do not have to wait for all preceding methods to finish before returning. Because tasks can be deferred, the application can make better use of its limited resources and process things faster.
To view this, navigate to the Applications Manager web client > APM tab > select your application > click the Overview tab. On the Overview page, check the App Server Response Time Broken by Components graph. The asynchronous activity in the respective Java application can result in the response time being less than the total transaction time.

It allows us to track crucial metrics such as response times, resource utilization, error rates, and transaction performance. The real-time monitoring alerts promptly notify us of any issues or anomalies, enabling us to take immediate action.
Reviewer Role: Research and Development