Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Conversion corrections

Table of Contents
outlinh1. true
outlinh1. true
1printablefalse
2stylh1. none
3indent20px

General

When a backup Job Scheduler instance in a Job Scheduler Backup/Failover cluster takes over, it could be usefull that someone will be informed about this. Here comes a simple approach how to get this.

...

Here is the xml for this kind of job.

Code Block

 <job  title="Send Mails" order="no" name="CheckStart">
     <description >
         <include  file="jobs/JobSchedulerManagedMailJob.xml"/>
     </description>
 
     <params >
         <param  name="to" value="admin@company.com"/>
         <param  name="subject" value="Job Scheduler has been startet."/>
         <param  name="host" value="smtp.server"/>
         <param  name="body" value="Job Scheduler has been startet"/>
     </params>
 
     <script  language="java" java_class="sos.scheduler.managed.JobSchedulerManagedMailJob"/>
 
     <monitor  name="check" ordering="0">
         <script  language="java:javascript">
             <![CDATA[
 function spooler_process_before()\ {
     spooler_log.info(spooler.hostname);
     return (spooler.hostname == "js_backup");
 \}
              ]]>
         </script>
     </monitor>
 
     <run_time  once="yes"/>
 </job>