You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# occ usage-report:generate --verbose | head -1
"user-id","date as 'c'","assigned quota (5 GB)","used quota (500 MB)",number of files,number of shares,number of uploads,number of downloads
The header of the CSV file contains spaces and other characters ( (, ), ') that should be in general be avoided as they make it trickier to parse and process the data by a program.
In addition it is not clear why the values 5 GB and 500 MB are there.
My proposal is to name the fields in the header of the CSV output as the fields of the JSON output
user_id
date
quota
used
files
shares
uploads
downloads
The text was updated successfully, but these errors were encountered:
Run the following command and observe the output:
The header of the CSV file contains spaces and other characters (
(
,)
,'
) that should be in general be avoided as they make it trickier to parse and process the data by a program.In addition it is not clear why the values
5 GB
and500 MB
are there.My proposal is to name the fields in the header of the CSV output as the fields of the JSON output
user_id
date
quota
used
files
shares
uploads
downloads
The text was updated successfully, but these errors were encountered: