Report of used quota

Hello.

There is 3k users working with my Nextcloud instance.
Listing all users at GUI is very, very slow.

Is there any possibilty to get some kind of raport of used quota by all users?

Regards.

Check this app out: https://apps.nextcloud.com/apps/user_usage_report

sudo -u www-data php occ usage-report:generate admin
"admin","2017-09-18T09:00:01+00:00",5368709120,786432000,12,1,1,2

The CSV data is the following:

User identifier
Date and time (default in ISO 8601 format, but any format can be specified)
Assigned home storage size in bytes (-3 is unlimited, -2 is unknown/not set)
Disk space consumed by home storage in bytes (-2 is unknown)
Number of files in home storage
Number of shares created
Number of files created (new files only)
Number of files read (download/view)

This script will generate report in a “cacti” format:

1 Like