AD0-E103 Exam QuestionsBrowse all questions from this exam

AD0-E103 Exam - Question 89


An AEM site experiences slower page loads. A developer needs to identify the slow running requests.

How should a developer analyze the requests with long response times?

Show Answer
Correct Answer: A

To identify slow running requests in an Adobe Experience Manager (AEM) site, a developer should analyze the request logs to find those with long response times. Using rlog.jar with the command 'java -jar ../opt/helpers/rlogs.jar -n 10 requests.log' allows the developer to quickly sort the request log by duration, displaying the longest running requests. This method is effective for pinpointing which requests are affecting page load times the most.

Discussion

5 comments
Sign in to comment
chunpinOption: A
Jan 7, 2021

Answer: A Reference: Common critical AEM issues, https://docs.adobe.com/content/help/en/experience-manager-65/deploying/configuring/monitoring-and-maintaining.html

chunpin
Jan 7, 2021

Using rlog.jar to find requests with long duration times AEM includes various helper tools located in: <cq-installation-dir>/crx-quickstart/opt/helpers One of these, rlog.jar, can be used to quickly sort request.log so that requests are displayed by duration, from longest to shortest time. https://docs.adobe.com/content/help/en/experience-manager-65/deploying/configuring/monitoring-and-maintaining.html

AkashDOption: A
Jun 27, 2020

Answers should be A Request.log. https://vceguide.com/how-should-a-developer-analyze-the-requests-with-long-response-times/

mat2020Option: A
Aug 21, 2020

answer A

pgawadeOption: A
Aug 28, 2020

answer A

mrjavaOption: D
Jul 17, 2023

I think the answer is D. The rlog.jar help to find out longest request but the Component Timing will help us to "analyze" the request itself to know which part consumes most of the time.