-
- Veeam ProPartner
- Posts: 48
- Liked: 3 times
- Joined: Apr 30, 2012 9:37 am
- Full Name: Kenneth Westergaard
- Contact:
Invoicing report for hosting veeam
I need a report that tells me how much physical Space is used in my repository per job, and how many VM's per job.
We invoice customer for each vm, and theyre use of Space on our system.
Any ideas? Maybe its already there?
We invoice customer for each vm, and theyre use of Space on our system.
Any ideas? Maybe its already there?
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: Invoicing report for hosting veeam
Hi Kenneth,
It's not there, but this report will be present in Veeam ONE v7, which should be available in Q3. Can you please tell me if there is any other backup report you would like to see in Veeam ONE?
Thanks!
It's not there, but this report will be present in Veeam ONE v7, which should be available in Q3. Can you please tell me if there is any other backup report you would like to see in Veeam ONE?
Thanks!
-
- Veeam ProPartner
- Posts: 48
- Liked: 3 times
- Joined: Apr 30, 2012 9:37 am
- Full Name: Kenneth Westergaard
- Contact:
Re: Invoicing report for hosting veeam
If it is not already there, I hope the report can do it per job, and send an email to the customer.
In the same report, I would it to tell the customer, and I, of any VM's on the host, which are not being backed up. Preferably cross jobs. This way if some hosts are hourly backed up, it wont alert of non backedup VM's. Maybe report should be per host or cluster instead of job.
A report with a trend for when we will run out of physical disk space on the repository.
In the same report, I would it to tell the customer, and I, of any VM's on the host, which are not being backed up. Preferably cross jobs. This way if some hosts are hourly backed up, it wont alert of non backedup VM's. Maybe report should be per host or cluster instead of job.
A report with a trend for when we will run out of physical disk space on the repository.
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: Invoicing report for hosting veeam
This report is already available and is called capacity planning for backup repositories, please take a look.ravelin wrote:A report with a trend for when we will run out of physical disk space on the repository.
-
- Veeam ProPartner
- Posts: 48
- Liked: 3 times
- Joined: Apr 30, 2012 9:37 am
- Full Name: Kenneth Westergaard
- Contact:
Re: Invoicing report for hosting veeam
Is there a report for Space used with and without dedup?
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: Invoicing report for hosting veeam
No, but if you want to calculate how much space is consumed without deduplication you can calculate that on your own since dedupe factor is already known. Out of curiosity, can you please tell me what do you need these figures for?
-
- Veeam ProPartner
- Posts: 48
- Liked: 3 times
- Joined: Apr 30, 2012 9:37 am
- Full Name: Kenneth Westergaard
- Contact:
Re: Invoicing report for hosting veeam
Maybe we want to earn some extra revenue, invoicing based on raw data, rather that deduped
-
- Product Manager
- Posts: 20415
- Liked: 2302 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Invoicing report for hosting veeam
Just out of curiosity - what type of repository is it? CIFS share? Attached drive? Something else?I need a report that tells me how much physical Space is used in my repository per job
Thanks.
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: Invoicing report for hosting veeam
For that we will have another report, that will display how much data was changed (raw data) since the last backup job run. Basically, it will show you the number of changed blocks that was returned by VMware CBT.ravelin wrote:Maybe we want to earn some extra revenue, invoicing based on raw data, rather that deduped
Recently I've talked to one of our customers who uses this billing model for charging money from their customers, so I guess you will also find this report useful.
-
- Veeam ProPartner
- Posts: 48
- Liked: 3 times
- Joined: Apr 30, 2012 9:37 am
- Full Name: Kenneth Westergaard
- Contact:
Re: Invoicing report for hosting veeam
Sorry didnt see your response.v.Eremin wrote: Just out of curiosity - what type of repository is it? CIFS share? Attached drive? Something else?
Thanks.
Its locally attached drives.
-
- Product Manager
- Posts: 20415
- Liked: 2302 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Invoicing report for hosting veeam
In this case you can to utilize the following PS script that outputs the storage space consumption per job being expressed in percentages. Moreover, the output can be later redirected to a given file, if need be:Its locally attached drives.
Code: Select all
Foreach($Job in (Get-VBRJob | where {$_.jobtype -eq "Backup"}))
{
$DriveLetter = $Job.FindTargetRepository().Path.Substring(0,2)
$Backup = Get-VBRBackup -name $Job.name
If ($Backup -ne $null)
{
$BackupSize = [int64]($backup.GetStorages() | Select-Object -ExpandProperty stats | ForEach-Object {$_.backupsize} | Measure-Object -Sum).sum
$DiskCapacity = [int64](gwmi win32_volume -Filter 'drivetype = 3' |? {$_.driveletter -eq $DriveLetter}).capacity
$Job.name + " " + "storage space consumption" + " "+ "{0:N9}" -f ($BackupSize/$DiskCapacity*100) + "%"
}
}
The script provided above should work fine in case of locally attached drives.
Hope this helps.
Thanks.
-
- Veeam ProPartner
- Posts: 48
- Liked: 3 times
- Joined: Apr 30, 2012 9:37 am
- Full Name: Kenneth Westergaard
- Contact:
Re: Invoicing report for hosting veeam
Thanks, I did my own like this:
Code: Select all
$startFolder = "D:\Customers"
$colItems = (Get-ChildItem $startFolder | Measure-Object | Select-Object -ExpandProperty count)
"$startFolder -- " + "{0:N2}" -f ($colItems.sum / 1MB) + " MB"
$colItems = (Get-ChildItem $startFolder -recurse | Where-Object {$_.PSIsContainer -eq $True} | Sort-Object)
foreach ($i in $colItems)
{
$subFolderItems = (Get-ChildItem $i.FullName | Measure-Object -property length -sum -ErrorAction SilentlyContinue)
$i.FullName + " -- " + "{0:N2}" -f ($subFolderItems.sum / 1MB) + " MB"
}
-
- Product Manager
- Posts: 20415
- Liked: 2302 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Invoicing report for hosting veeam
Yep, may also do the trick. However, it still might be useful to implement a part that will provide you with the information regarding what certain part of a corresponding drive is taken by a given job:
Thanks.
Code: Select all
$startFolder = "D:\Customers"
$DriveLetter = $startFolder.Substring(0,2)
$colItems = (Get-ChildItem $startFolder | Measure-Object | Select-Object -ExpandProperty count)
"$startFolder -- " + "{0:N2}" -f ($colItems.sum / 1MB) + " MB"
$DiskCapacity = [int64](gwmi win32_volume -Filter 'drivetype = 3' |? {$_.driveletter -eq $DriveLetter}).capacity
$colItems = (Get-ChildItem $startFolder -recurse | Where-Object {$_.PSIsContainer -eq $True} | Sort-Object)
foreach ($i in $colItems)
{
$subFolderItems = (Get-ChildItem $i.FullName | Measure-Object -property length -sum -ErrorAction SilentlyContinue)
$i.FullName + " -- " + "{0:N2}" -f ($subFolderItems.sum / 1MB) + " MB" + " {0:N4}" -f ($subFolderItems.sum/$DiskCapacity *100) + "%"
}
-
- Novice
- Posts: 5
- Liked: never
- Joined: Aug 08, 2012 8:44 pm
- Contact:
Re: Invoicing report for hosting veeam
Vitaliy S., This would be a huge feature for us. So you're saying that there will be a report in Veeam ONE v7 that will allow me to see the actual amount of space that my servers are using for backups AFTER dedupe and compression? Please say yes!Hi Kenneth,
It's not there, but this report will be present in Veeam ONE v7, which should be available in Q3. Can you please tell me if there is any other backup report you would like to see in Veeam ONE?
Thanks!
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: Invoicing report for hosting veeam
I wish I could, check my PM to you Can you please share your scenario, so I could better understand on what you're trying to achieve with this report?
Who is online
Users browsing this forum: No registered users and 1 guest