Table of Contents | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Open
...
JobScheduler Operations Center
The OperationsGui JobScheduler Operations Center (JOC) of the JobScheduler is used to monitor and control the jobs, job chains and orders.
You open the OperationsGUI JOC in a browser with the URL:
...
where scheduler_host
and scheduler_port
are the hostname and the TCP port number of the Job Schedulers JobScheduler.
Configuration via custom.js
The configuration file custom.js for the operationsGui JOC is stored in the ./config/operations_gui directory.
...
While the configuration file custom.js (see above) for the operationsGui JOC is always read,
you can create an additional own configuration file i.e. my_custom.js to overwrite the settings in custom.js.
...
Code Block |
---|
The language of the operationsGuiJOC is per default english, but some users want theJOC operationsGui in russian and other in french. <br/>Create the file ''ru.js'' with the content <br/><tt>_sos_lang           = 'ru';</tt> <br/>and create the file ''fr.js'' with the content <br/><tt>_sos_lang           = 'fr';</tt> <br/> <br/>After this you get theJOC operationsGui in russian if you type <tt>http://[scheduler_host]:[scheduler_port]/index.html#ru</tt> (or <tt>http://[scheduler_host]:[scheduler_port]/#ru</tt>) <br/>and you get it in french if you type <tt>http://[scheduler_host]:[scheduler_port]/index.html#fr</tt> (or <tt>http://[scheduler_host]:[scheduler_port]/#fr</tt>). |
...
Code Block |
---|
We require the files from the previous example and add <br/><tt>_extra_urls['english']         = 'http://[scheduler_host]:[scheduler_port]/index.html';</tt> <br/><tt>_extra_urls['russian']         = 'http://[scheduler_host]:[scheduler_port]/index.html#ru';</tt> <br/><tt>_extra_urls['french']          = 'http://[scheduler_host]:[scheduler_port]/index.html#fr';</tt> <br/>in the ''custom.js''. <br/> <br/>If you call the operationsGuiJOC you find links in the right top <tt>Extras</tt> menu, so you can easily choose the language. |
...