- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
When investigating the performance of a monolithic application–that is, a single service that has multiple uses–you usually need to find which parts of the code base are using the most resources. The APM Service page showing top endpoints might be a logical first place to look, but the data there is focused on the number of requests and their duration, not the impact those requests have on compute resources available on your backend.
Instead, use the Continuous Profiler to filter flame graphs by endpoint usage. This allows you to identify the top resource-consuming endpoints and examine which functions use the most resources for each particular endpoint.
This guide describes how to use the Datadog Continuous Profiler to investigate these kinds of problems.
The first step in a performance investigation is to identify anomalies in resource usage over time. Consider the following graph of CPU utilization over the past hour for the service product-recommendation
:
This doesn’t provide the exact root cause, but you can see anomalous peaks in CPU usage.
Select the Show - Avg of dropdown (highlighted in the previous image) and change the graph to show CPU Cores for Top Endpoints
instead. This graph shows how different parts of the application contribute to the overall CPU utilization:
The yellow peaks indicate that the GET /store_history
endpoint has some intermittent usage corresponding to the anomalies identified earlier. However, the peaks might be due to differences in traffic to that endpoint. To understand if profiles can provide further insights, change the metric to CPU - Average Time Per Call for Top Endpoints
:
The updated graph reveals that there is an intermittent spike in CPU utilization where each call to GET /store_history
takes on average three seconds of CPU time. This suggests the spikes aren’t due to an increase in traffic, but instead an increase in CPU usage per request.
To determine the cause of increased CPU usage each time GET /store_history
is called, examine the profiling flame graph for this endpoint during one of the spikes. Select a time range where GET /store_history
is showing more CPU utilization and scope the profiling page to that time range. Then switch to the Flame Graph visualization to see the methods using the CPU at this time:
To better understand why the GET /store_history
endpoint is using more CPU, refer to the table highlighted in the previous image, where the endpoint is second from the top. Select that row to focus the flame graph on the CPU utilization caused by the GET /store_history
endpoint.
Because you are investigating resource usage per request, also change the value in the dropdown at top of the table to CPU Time per Endpoint Call
. This shows the average resource usage per call to that endpoint instead of the average resource usage per minute.
With the graph displaying data for the correct time and endpoint, you should have enough data to determine what is causing the spike in CPU utilization. If you’re still uncertain, you can compare the flame graph for the spike with a time when utilization was more acceptable.
To see if there are differences in which methods are using a lot of CPU time between a spike and normal usage, click Compare (next to the search field) and select Previous 15 minutes
. This opens the Comparison view.
The view shows two graphs, labeled A and B, each representing a time range for CPU utilization per GET /store_history
call. Adjust the time selector for A so that it is scoped to a period with low CPU utilization per call:
The comparison reveals the different methods causing CPU utilization during the spike (timeframe B) that are not used during normal CPU usage (timeframe A). As shown in the previous image,Product.loadAssets(int)
, is causing the spikes.
To fix the problem, optimize the method. Looking at the method code, the signature is Product(int id, String name, boolean shouldLoadAssets)
and you do not need to load assets for the response to the GET /store_history
endpoint. This implies that there is a bug further up the call stack that improperly instructs the Product
constructor to load assets.
Fix that bug and verify that the spikes go away, using the timeseries graphs discussed earlier.
There are other attributes available in the profiler. For example, you can filter and group a flame graph by operation names, rather than by functions or threads. For monolithic applications, this can more clearly identify CPU-intensive resources, even if they are shared between endpoints.
The APM Trace operation
attribute lets you filter and group a flame graph with the same granularity as the traces for the selected endpoints. This is a good balance between the high granularity of threads or methods, and the low granularity of entire endpoints. To isolate operations, select Trace Operation
from the CPU time by dropdown:
In the previous image, notice that the ModelTraining
operation is taking more CPU time than its primary use in the GET /train
endpoint, so it must be used elsewhere. Click the operation name to determine where else it is used. In this case, ModelTraining
is also use by POST /update_model
.
Endpoint and operation isolation is available in your profiles by default, but you may want to isolate a different piece of logic. For example, if the monolith is sensitive to specific customers, you can add a custom filter to the profiles:
Set a context value for the customer name like so:
try (var scope = Profiling.get().newScope()) {
scope.setContextValue("customer_name", <the customer name value>);
<logic goes here>
}
To specify which label keys you want to use for filtering, set the profiling.context.attributes
configuration with one of the following:
DD_PROFILING_CONTEXT_ATTRIBUTES=customer_name
-Ddd.profiling.context.attributes=customer_name
If you have multiple context keys, use a comma-separated string for the configuration (for example,-Ddd.profiling.context.attributes=customer_name,customer_group
).
Then, open CPU, Exceptions, or Wall Time profiles for your service and select the customer_name
value you’re interested in under the CPU time by
dropdown.
The Go profiler supports custom annotations for your business logic as of version v1.60.0. To add annotations, use profiler labels like so:
pprof.Do(ctx, pprof.Labels("customer_name", <value>), func(context.Context) {
/* customer-specific logic here */
})
To specify which label keys you want to use for filtering, add the WithCustomProfilerLabelKeys option when starting the profiler:
profiler.Start(
profiler.WithCustomProfilerLabelKeys("customer_name"),
/* other options */
)
Then, open CPU or goroutine profiles for your service and select the customer_name
value you’re interested in under the CPU time by
dropdown.
추가 유용한 문서, 링크 및 기사: