March 20, 2020
Estimated Post Reading Time ~

Overview on Workflow, Performance monitoring, Logs in AEM/Adobe CQ5

Workflow, performance monitoring, logging in AEM
Workflow:
Used to automate the process involved in page creation to publish.

http://localhost:4505/libs/cq/workflow/content/console.html
Launcher workflow enables to automate the workflow in AEM.
Instance: The tab shows running workflows that can be suspended or canceled.
· Models: list all workflows created.
· Archive: shows completed workflows
· Failures: Shows all the failed workflows.

Error/Failure in Workflow custom process "Process implementation not found: "

The reason may be you are creating bundle using CRXDELite and below codes are commented.
#Export-Package: *
#Import-Package: *

Solution: So you have to uncomment to get the workflow success.

Performance:
Logs
Request.log
files will have all requests logged. Monitoring this log is the best way to track performance issues. We can also use some profilers to tackle performance issues.

Tool helps to track last few requests "author\crx-quickstart\opt\helpers > rlog.jar"

To access logs, from command prompt reach to the location of rlog.jar then > execute java -jar rlog.jar -n 10 ../../logs/request.log will give all slowest responses.

Readable: http://dev.day.com/docs/en/cq/current/deploying/performance.html
The timing chart URL will also help to find the performance timing of any page loading.

Common performance improvement methods:
http://helpx.adobe.com/experience-manager/kb/performancetuningtips.html



By aem4beginner

No comments:

Post a Comment

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