I m working for a service providers, we need to calculate disk space usage for each tenant.
We use SOBR for the backup storage.
I found this script in a topic:
Code: Select all
Get-VBRBackup | Select @{N="Job Name";E={$_.Name}}, @{N="Size (GB)";E={[math]::Round(($_.GetAllStorages().Stats.BackupSize | Measure-Object -Sum).Sum/1GB,1)}} | Format-Table -AutoSize
This script give me the utilization for " Classic Backup repository" but not for the object storage in my SOBR.
I did'nt find yet how to find this value. For me in the object storage it should be the same value but I'm not sure about that.
After that my tenant could have more that one backup job so I have to find a solution to addition all backup jobs for one client...
Help would be much appreciate