Async Profiler
Async Profiler is bound within the auto-instrument agent and corresponds to In-Process Profiling.
It is passed to the proxy in the form of a task, allowing it to be enabled or disabled dynamically. When service encounters performance issues (cpu usage, memory allocation, locks), async-profiler task can be created. When the proxy receives a task, it enables Async Profiler for sampling. After sampling is completed, a flame graph will be generated for performance analysis to determine the specific business code line that caused the performance problem.
Activate async profiler in the OAP
OAP and the agent use a brand-new protocol to exchange Async Profiler data, so it is necessary to start OAP with the following configuration:
receiver-async-profiler:
selector: ${SW_RECEIVER_ASYNC_PROFILER:default}
default:
Async Profiler Task with Analysis
To use the Async Profiler feature, please follow these steps:
- Create Async Profiler task: Use the UI or CLI tool to create a task.
- Wait agent collect data and upload: Wait for Async Profiler to collect JFR data and report
- Query task progress: Query the progress of tasks, including analyzing successful and failed instances and task logs
- Analyze the data: Analyze the JFR data to determine where performance bottlenecks exist in the service.
Create an Async Profiler task
Create an Async Profiler task to notify some java-agent instances in the execution service to start Async Profiler for data collection.
When creating a task, the following configuration fields are required:
- serviceId: Define the service to execute the task.
- serviceInstanceIds: Define which instances need to execute tasks.
- duration: Define the duration of this task (second).
- events: Define which event types this task needs to collect.
- execArgs: Other Async Profiler execution options, e.g. alloc=2k,lock=2s.
When the Agent receives a Async Profiler task from OAP, it automatically generates a log to notify that the task has been acknowledged. The log contains the following field information:
- Instance: The name of the instance where the Agent is located.
- Type: Supports “NOTIFIED” and “EXECUTION_FINISHED” and “JFR_UPLOAD_FILE_TOO_LARGE_ERROR”, “EXECUTION_TASK_ERROR”, with the current log displaying “NOTIFIED”.
- Time: The time when the Agent received the task.
Wait the agent to collect data and upload
At this point, async-profiler will trace the following kinds of events:
- CPU cycles
- Hardware and Software performance counters like cache misses, branch misses, page faults, context switches etc.
- Allocations in Java Heap
- Contented lock attempts, including both Java object monitors and ReentrantLocks
Finally, java agent will upload the jfr file produced by async-profiler to the oap server for online performance analysis.
Query the profiling task progresses
Wait for async-profiler to complete data collection and upload successfully,We can query the execution log of the async-profiler task and the successful and failed instances,which includes the following information:
- successInstanceIds: SuccessInstanceIds gives instances that have executed the task successfully.
- errorInstanceIds: ErrorInstanceIds gives instances that failed to execute the task.
- logs: All task execution logs of the current task.
- id: The task id.
- instanceId: InstanceId is the id of the instance which reported this task log.
- instanceName: InstanceName is the name of the instance which reported this task log.
- operationType: Contains “NOTIFIED” and “EXECUTION_FINISHED” and “JFR_UPLOAD_FILE_TOO_LARGE_ERROR”, “EXECUTION_TASK_ERROR”.
- operationTime: operationTime is the time when the operation occurs.
Analyze the profiling data
Once some agents completed the task, we can analyze the data through the following query:
- taskId: The task id.
- instanceIds: InstanceIds defines the instances to be included for analysis
- eventType: EventType is the specific JFR Event type to be selected for analysis even if multiple events are included in the JFR file.
After the query, the following data would be returned to render a flame graph:
- type: eventType in query parameters.
- elements: Combined with “id” to determine the hierarchical relationship.
- Id: Id is the identity of the stack element.
- parentId: Parent element ID. The dependency relationship between elements can be determined using the element ID and parent element ID.
- codeSignature: Method signatures in tree nodes.
- total:The total number of samples of the current tree node, including child nodes.
- self: The sampling number of the current tree node, excluding samples of the children.