Hi all,
today I noticed that some of the usual success mails for the "Backup to Tape" jobs were missing.
After a look in VBR I saw three jobs in state "running" and "Waiting for Tape" since a couple of days.
Is there a chance to get an email notification if no free tape is found within a certain amount of time?
In my opinion, it is a bad idea to regularly look for missing emails, - it would be better to receive warnings in case something does not work as expected.
(How can I attach a screenshot?)
Regards,
Helge
-
- Enthusiast
- Posts: 29
- Liked: 2 times
- Joined: Oct 24, 2012 11:17 am
- Full Name: Helge Hagedorn
- Contact:
-
- Product Manager
- Posts: 20413
- Liked: 2302 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: "Waiting for Tape": Email notification?
Hi, Helge,
As mentioned in the adjacent thread, we have already submitted this as a feature request. According to the plan, it should be added in the next release.
For now the only workaround I can come up with is to use scheduled PS script that will check whether the tape job sits in the "idle", waiting for a new tape, and generate notification e-mail in accordance.
Thanks.
As mentioned in the adjacent thread, we have already submitted this as a feature request. According to the plan, it should be added in the next release.
For now the only workaround I can come up with is to use scheduled PS script that will check whether the tape job sits in the "idle", waiting for a new tape, and generate notification e-mail in accordance.
Thanks.
-
- Enthusiast
- Posts: 29
- Liked: 2 times
- Joined: Oct 24, 2012 11:17 am
- Full Name: Helge Hagedorn
- Contact:
Re: "Waiting for Tape": Email notification?
Hi Vladimir,
thank you very much for this information and your quick reply. I have missed this thread.
I´m gonna give the PS script a try, until this alert is implemented.
Have a good day,
Helge
thank you very much for this information and your quick reply. I have missed this thread.
I´m gonna give the PS script a try, until this alert is implemented.
Have a good day,
Helge
-
- Product Manager
- Posts: 20413
- Liked: 2302 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: "Waiting for Tape": Email notification?
Recently, one of our customer has created the script that cancels a tape job if it sits in "waiting for new tape" state. I believe this script can be taken as an example and modified further.
Thanks.
Thanks.
-
- Novice
- Posts: 5
- Liked: 2 times
- Joined: Aug 09, 2013 6:02 pm
- Full Name: Ariel Cabral
- Contact:
Re: "Waiting for Tape": Email notification?
Hey guys,
I managed to "create" a very basic script that checks for what we need. I may be late as this may be already included in version 8, but it could work for anyone who's been working on it..
What I did was to create a .ps1 file and execute Powershell from the task scheduler, let's say, every one hour
Here's the (basic) script
Any modifications are absolutely welcome, but I just needed to know if Veeam was waiting for a tape
I hope it works, enjoy!
Greetings from Argentina,
Ariel
I managed to "create" a very basic script that checks for what we need. I may be late as this may be already included in version 8, but it could work for anyone who's been working on it..
What I did was to create a .ps1 file and execute Powershell from the task scheduler, let's say, every one hour
Here's the (basic) script
Code: Select all
Add-PSSnapin VeeamPSSnapIn
Get-VBRTapeJob | foreach-object {if ($_.GetLastState() -like "WaitingTape") {Send-MailMessage -from veeam@example.com -to admin@example.com -cc datacenteradmins@example.com "Veeam is waiting to load tapes!" -smtpserver 10.172.12.43} else {echo "Everything is alright"}}
Any modifications are absolutely welcome, but I just needed to know if Veeam was waiting for a tape
I hope it works, enjoy!
Greetings from Argentina,
Ariel
Who is online
Users browsing this forum: Semrush [Bot] and 13 guests