Gerardo Zago Stefanoni, Thank you for posting this question on Microsoft Q&A. Based on your question, I assume that you have enabled the diagnostic settings on Blob service and have all the logs flowing to Log Analytics. In this case, both upload and download operations have the content size information available as well and you may use the query like below:
Upload
StorageBlobLogs
| where OperationName == 'PutBlob'
| project TimeGenerated, OperationName, CallerIpAddress, RequestBodySize
//RequestBodySize contains size as the file/blob is being uploaded
Download
StorageBlobLogs
| where OperationName == 'GetBlob'
| project TimeGenerated, OperationName, CallerIpAddress, ResponseBodySize
//ResponseBodySize contains size as the file/blob is being downloaded.
If the answer did not help, please add more context/follow-up question for it, and we will help you out. Else, if the answer helped, please click Accept answer so that it can help others in the community looking for help on similar topics.