I'm looking to automate some reporting, currently I'm exporting to XLS the Job Status page in my Enterprise Manager.
This gives me all the information I could ever want. But, I'd like to automatically email this xls report to myself.
The closest thing I can find is using the reports/summary/job_statistics portion of the rest API, which gives a great overview.
Code: Select all
xmlns : http://www.veeam.com/ent/v1.0
xsd : http://www.w3.org/2001/XMLSchema
xsi : http://www.w3.org/2001/XMLSchema-instance
RunningJobs : (redacted)
ScheduledJobs : (redacted)
ScheduledBackupJobs : (redacted)
ScheduledReplicaJobs : (redacted)
TotalJobRuns : (redacted)
SuccessfulJobRuns : (redacted)
WarningsJobRuns : (redacted)
FailedJobRuns : (redacted)
MaxJobDuration : (redacted)
MaxBackupJobDuration : (redacted)
MaxReplicaJobDuration : (redacted)
MaxDurationBackupJobName : (redacted)
MaxDurationReplicaJobName :
BackupJobStatusReportLink : Workspace/ViewReport.aspx?definition=00000000-0000-0000-0000-000000000000&ShowParams=1
I've only been using the Enterprise manager rest api for about an hour, so my knowledge is fairly limited, any help would be appreciated.