Skip to main content
Question

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.

5 comments

Chris.Childerhose
Forum|alt.badge.img+21
  • Veeam Legend, Veeam Vanguard
  • 8517 comments
  • December 11, 2024

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?


AndrePulia
Forum|alt.badge.img+7
  • Veeam Legend, Veeam Vanguard
  • 338 comments
  • December 16, 2024
Chris.Childerhose wrote:

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 

https://www.veeam.com/veeam_backup_12_1_whats_new_wn.pdf 

@dlinfrastructureteam , please, check the version you are using 


Chris.Childerhose
Forum|alt.badge.img+21
  • Veeam Legend, Veeam Vanguard
  • 8517 comments
  • December 16, 2024
AndrePulia wrote:
Chris.Childerhose wrote:

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 

https://www.veeam.com/veeam_backup_12_1_whats_new_wn.pdf 

@dlinfrastructureteam , please, check the version you are using 

Thanks for clarifying this and hopefully it is just version for the OP.


waqasali
Forum|alt.badge.img+3
  • Influencer
  • 198 comments
  • December 18, 2024

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.

 

 


AndrePulia
Forum|alt.badge.img+7
  • Veeam Legend, Veeam Vanguard
  • 338 comments
  • December 18, 2024

​Hi @diacosasysadmin , did you cjeck the Veeam version you are using?