Automation AEM Revision CleanUp Automation 15 Sep 201815 Sep 2018 Each update to the AEM repository creates a new content revision which results in AEM repository growth. To avoid uncontrolled repository growth, old revisions need to be cleaned up to…
AEM Performance AEM – Check Thread CPU Usage 13 Sep 201813 Sep 2018 Following AEM Groovy script will be very helpful during the performance issue diagnosis - //threadsCpuUsage sampleTime = 10_000 topThreads = 3 cores = Runtime.getRuntime().availableProcessors(); threadMxBean = java.lang.management.ManagementFactory.getThreadMXBean() threadCpuInitialTimes = [:]…
User Administration AEM User Report 13 Sep 201813 Sep 2018 Handy Groovy scripts How to fetch the list of users belong to specific user groups? Here you go - // List users belong to specific groups groups = ['group-name-1', 'group-name-2', 'group-name-3',…