Is there any way to check if a job is running or stopped?
Hi everyone! I have some jobs that are critical, and they have to be running (using tWaitForFile) all time. I would like to know, by email, if one of these jobs stop. Thanks.
Create a master job that calls your main job as a subjob. (Just drag the other main job into master job.) From the subjob - - use on JobOk to a tSendMail to send "job complete: - use on JobError to a tSendMail to send "job error"
Thanks phobucket, That doesn't solve my problem, I don't want to know if it was an error, I just want to know if it is stopped for some reason, without error. And if its possible run it automatically in that case. I tried with a loop in other job just to call the other job every 10 seconds, but it's creating another process, so I would have two process doing the same, that is not good at all!