Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

com.sos.scheduler.notification-<version>.jar
jsendnsca-2.0.1.jar


This JARs are currently not included within the JobScheduler installation.

...

Code Block
languagexml
 <?xml version="1.0" encoding="utf-8"?>
      <CheckHistoryConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CheckHistoryConfiguration_v1.0.xsd">
          <MonitoredObject>
	      <!-- configure job chains for monitoring -->
              <JobChains>
	          <JobChain name="samples/sample_jobChain_1"/>
                  <JobChain name="samples/sample_jobChain_2"/>
                  <JobChain name="samples/sample_jobChain_3"/>
		 	  <JobChain name="sample*" restriction="."         /> 
		 </JobChains>
 
               <!-- configure checks for performance measurement -->
	       <Timers>
                   <Timer>
		      <!-- 
                     configure job chains and expected maximum execution time for performance measurement
 
                     impact: if the execution time of step 100 on current order in job chain samples/sample_jobChain_1 is greater as 10 seconds,
                     the current order will be set as performance problem. 
                   -->
                     <JobChains>
		              <JobChain name="samples/sample_jobChain_1" step_from="100" step_to="100"/>
	              </JobChains>
                     <Maximum><Script language="javascript"><![CDATA[10]]></Script></Maximum>
		      </Timer>
	       </Timers>
          </MonitoredObject>
  </CheckHistoryConfiguration>

...