-
- Veeam ProPartner
- Posts: 119
- Liked: 24 times
- Joined: Apr 01, 2011 10:36 am
- Full Name: Dean Colpitts
- Location: Atlantic coast of Canada
- Contact:
No email notification on restore jobs?
I don't seem to get any email notifications on restore jobs. Email notification is set globally, and we get notification on backups (both successful and failed), but nothing at all on restores. We are on B&R 7 Patch 3A. Am I missing something here?
dcc
dcc
-
- Veeam Software
- Posts: 21139
- Liked: 2141 times
- Joined: Jul 11, 2011 10:22 am
- Full Name: Alexander Fogelson
- Contact:
Re: No email notification on restore jobs?
Dean, currently Veeam B&R does not send notifications for restore jobs activity. However, you can use the Restore Activity report in Veeam ONE to track it.
-
- Veeam ProPartner
- Posts: 119
- Liked: 24 times
- Joined: Apr 01, 2011 10:36 am
- Full Name: Dean Colpitts
- Location: Atlantic coast of Canada
- Contact:
Re: No email notification on restore jobs?
Thanks Foggy - I think that is a glaring omission in Veeam... If you can send backup jobs, then there is no reason you shouldn't be able to send restore jobs. My two cents worth I guess.
Thanks
dcc
Thanks
dcc
-
- Veeam Software
- Posts: 21139
- Liked: 2141 times
- Joined: Jul 11, 2011 10:22 am
- Full Name: Alexander Fogelson
- Contact:
Re: No email notification on restore jobs?
Thanks for your feedback. We probably need to consider adding some basic restore reporting in Veeam B&R.
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: No email notification on restore jobs?
I guess one of the reasons why there are no notifications is that you run the restore job manually, cannot schedule it, so you should be aware on what's going on.
-
- Veeam ProPartner
- Posts: 119
- Liked: 24 times
- Joined: Apr 01, 2011 10:36 am
- Full Name: Dean Colpitts
- Location: Atlantic coast of Canada
- Contact:
Re: No email notification on restore jobs?
I partly agree with what you are saying - however, that being said - if someone else on the IT team starts the restore, it would good for the rest of the team to know a restore has occurred (communication is not always the first thing thought of on some teams). Further to that, if you start a restore and it takes a long time to complete, it would be nice to have an email to advise you that the restore is done so you are not constantly having to baby sit it to see if it is completed.
We currently utilize the job notification in BackupExec for exactly these reasons.
dcc
We currently utilize the job notification in BackupExec for exactly these reasons.
dcc
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: No email notification on restore jobs?
Got it, makes sense. Even though it is currently not available, it is still possible to track restore jobs and send email notifications as you want. In order to achieve that you can use Windows Event log to trigger the email notification via 3rd party tool > http://www.veeam.com/kb1834
P.S. this capability should also be available in the next update of Veeam ONE.
P.S. this capability should also be available in the next update of Veeam ONE.
-
- Lurker
- Posts: 1
- Liked: never
- Joined: Oct 03, 2013 6:49 pm
- Full Name: DustyMarie Haberkern
Re: No email notification on restore jobs?
I know this is an old post but would like to see this implemented in a later version. Re: ...if you start a restore and it takes a long time to complete, it would be nice to have an email to advise you that the restore is done. It really would be nice to get an email, I am in this scenario right now.
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: No email notification on restore jobs?
Yes, this feature for Veeam B&R is still on the radar. Thanks!
-
- Service Provider
- Posts: 10
- Liked: 2 times
- Joined: Mar 20, 2017 2:40 pm
- Full Name: Greg Smid
- Contact:
Re: No email notification on restore jobs?
Hey all, +1 here. Still on the roadmap?
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: No email notification on restore jobs?
Yes, currently the recommended way would be to use either Windows events or Veeam ONE reports.
-
- Influencer
- Posts: 19
- Liked: 2 times
- Joined: Sep 08, 2017 1:47 pm
- Full Name: Clint Cone
- Contact:
Re: No email notification on restore jobs?
It's pretty easy to do it with Windows powershell and a scheduled task.
Create a scheduled task that runs when specific events are generated... The events to key off of are Event IDs 250 and 251 in the Veeam Backup log... source is Veeam MP.
Set it to run a powershell script... this is the script to run:
I think there is cleaner way to actually pass in the windows event details to the task when it runs (so you don't have to go get the last generated event). But the code above has been working for my team.
Create a scheduled task that runs when specific events are generated... The events to key off of are Event IDs 250 and 251 in the Veeam Backup log... source is Veeam MP.
Set it to run a powershell script... this is the script to run:
Code: Select all
$InstanceID = "250","251"
$event = get-eventlog -LogName "*Veeam Backup" -Source "Veeam MP" -instanceID $InstanceID -newest 1
$PCName = $env:COMPUTERNAME
$EmailBody = $event | format-list -property * | out-string
$EmailFrom = "YourOrgFromAccount@yourserver.com"
$EmailTo = "YourNotificationEmail@yourserver.com"
$EmailSubject = $event.message
$SMTPServer = "YourEmailServer"
Send-MailMessage -From $EmailFrom -To $EmailTo -Subject $EmailSubject -body $EmailBody -SmtpServer $SMTPServer
-
- Service Provider
- Posts: 10
- Liked: 2 times
- Joined: Mar 20, 2017 2:40 pm
- Full Name: Greg Smid
- Contact:
Re: No email notification on restore jobs?
That worked great, thanks! I did have to take the * out of the -LogName parameter, but other than that, straight up copy and paste.ccone@vascorltd.com wrote:It's pretty easy to do it with Windows powershell and a scheduled task.
Greg
Who is online
Users browsing this forum: Bing [Bot] and 97 guests