Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
Hi, a few questions about AEM.
1) How do we get the total size of all our assets?2) Total count of our assets by asset type (image, video, etc.)?3) Listing of renditions?
Solved! Go to Solution.
hi @Tam123456
Navigate to the path i.e. Tools > Assets > Report
Create a report post under the path https://author-pxxxxxxxxxxxxxxx.adobeaemcloud.com/ui#/aem/mnt/overlay/dam/gui/content/reports/report...
The detailed report can be found over here in the below format.
Hope this helps!
Thanks
View solution in original post
You can use query to provide you the count and all nodes for point 2 & 3
to get all the renditions
SELECT * FROM [dam:Asset] AS s where isdescendantnode([/content/dam/mycompany/catalog]) and s.[jcr:content/renditions/*] is not null
to get the count you can check the property jcr:primary type to identify the file type
Views
Likes
Replies