April 23, 2020
Estimated Post Reading Time ~

AEM How many requests per hour do you have on the author or publish system at peak time

Solution:
For Author
To determine the total number of requests on Author since installation use the command line:
cd dir>/crx-quickstart/logs
grep -R "\->" request.log | wc -l

To determine the start and end dates:
vim request.log
G / 1G: for the last/first lines

Use these values to calculate the number of hours that have elapsed since installation, then the average number of requests per hour.


For Publisher :
How many requests per hour do you have on the publish system at peak time
cd dir>/crx-quickstart/logs
grep -R "\->" request.log | wc -l

To determine the start and end dates:
vim request.log
G / 1G: for the last/first lines


By aem4beginner

No comments:

Post a Comment

If you have any doubts or questions, please let us know.