Veeam report: health check report and SOBR backup report
Team
I have scheduled a weekly health check job for all active jobs, but unfortunately, we have not received the report via email, nor is it possible to generate it in an HTML format similar to the backup job reports.
Could you please assist with this? Additionally, the SOBR job results are not as effective or detailed as the daily backup job reports.
Page 1 / 1
Scheduled health checks do not send a report via email.  You need to check them here in the console under the History tab -
Â
You may want to check out Veeam ONE to possibly see if there is a report there but from what I can see at a glance there is not.
Did you have a question about the SOBR report or was that just a statement?
Scheduled health checks do not send a report via email.  You need to check them here in the console under the History tab -
Â
You may want to check out Veeam ONE to possibly see if there is a report there but from what I can see at a glance there is not.
Did you have a question about the SOBR report or was that just a statement?
Hi Chris, I think on v12.1 the notification by e-mail has been working again, see this on what’s is new for v12.1Â
​@dlinfrastructureteam , please, check the version you are usingÂ
Thanks for clarifying this and hopefully it is just version for the OP.
Hi ​@dlinfrastructureteamÂ
Verify and configure email notification settings you can use PowerShell scripts for custom health checks and SOBR reports and explore Veeam ONE for advanced reporting you can test and monitor your configuration to ensure timely and detailed reporting.
Â
Add-PSSnapin VeeamPSSnapin $SobrReport = Get-VBRBackupRepository | Where-Object { $_.Type -eq "ScaleOut" } | ForEach-Object {    ÂPSCustomObject]@{        SOBRName    = $_.Name        Extents     = ($_.Extent | ForEach-Object { $_.Name }) -join ", "        CapacityUsed = $_.UsedSpaceGB        CapacityFree = $_.FreeSpaceGB    } } $SobrReport | Export-Csv "C:\Reports\SOBR_Report.csv" -NoTypeInformation
Â
Use this data to generate detailed HTML or CSV reports.
Â
Â
​Hi @diacosasysadmin , did you cjeck the Veeam version you are using?