April 23, 2020
Estimated Post Reading Time ~

AEM How to find how many authors are working with the system

Statement: find the no of authors
Solution:


Find out the no of authors that have used the system since the installation
  • cd dir>/crx-quickstart/logs
  • cut -d " " -f 3 access.log | sort -u | wc -l
Find out the number of authors working on a given date:
  • grep "" access.log | cut -d " " -f 3 | sort -u | wc -l


By aem4beginner

No comments:

Post a Comment

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