/var/lib/otrs/Config/Files/Scheduler.xml is in otrs2 3.3.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | <?xml version="1.0" encoding="utf-8" ?>
<otrs_config version="1.0" init="Application">
<ConfigItem Name="Scheduler::LogPath" Required="1" Valid="1">
<Description Translatable="1">Defines the path for scheduler to store its console output (SchedulerOUT.log and SchedulerERR.log).</Description>
<Group>Scheduler</Group>
<SubGroup>Core::Log</SubGroup>
<Setting>
<String Regex=""><OTRS_CONFIG_Home>/var/log</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Scheduler::Log::DaysToKeep" Required="0" Valid="0">
<Description Translatable="1">Defines the time in days to keep log backup files.</Description>
<Group>Scheduler</Group>
<SubGroup>Core::Log</SubGroup>
<Setting>
<String Regex="[1-9]\d*">10</String><!-- default 10 days -->
</Setting>
</ConfigItem>
<ConfigItem Name="Scheduler::SleepTime" Required="1" Valid="1">
<Description Translatable="1">Defines scheduler sleep time in seconds after processing all available tasks (floating point number).</Description>
<Group>Scheduler</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="\d+[.]*\d*">1.0</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Scheduler::PIDUpdateTime" Required="1" Valid="1">
<Description Translatable="1">Defines scheduler PID update time in seconds (floating point number).</Description>
<Group>Scheduler</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="\d+[.]*\d*">60.0</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Scheduler::RestartAfterSeconds" Required="1" Valid="1">
<Description Translatable="1">Defines the time in seconds after which the Scheduler performs an automatic self-restart.</Description>
<Group>Scheduler</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="[1-9]\d*">86400</String><!-- default 1 day -->
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminScheduler" Required="0" Valid="1">
<Description Translatable="1">Frontend module registration for the agent interface.</Description>
<Group>Scheduler</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title Translatable="1">GenericInterface Webservice Mapping GUI</Title>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::NotifyModule###800-Scheduler-Check" Required="0" Valid="1">
<Description Translatable="1">Defines the module to display a notification in the agent interface if the scheduler is not running.</Description>
<Group>Scheduler</Group>
<SubGroup>Frontend::Agent::ModuleNotify</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::NotificationSchedulerCheck</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="Loader::Agent::CommonJS###000-GenericInterface" Required="1" Valid="1">
<Description Translatable="1">List of JS files to always be loaded for the agent interface.</Description>
<Group>Scheduler</Group>
<SubGroup>Core::Web</SubGroup>
<Setting>
<Array>
<Item>Core.Agent.Admin.Scheduler.js</Item>
</Array>
</Setting>
</ConfigItem>
<ConfigItem Name="Scheduler::TaskDataLength" Required="1" Valid="1">
<Description Translatable="1">Defines the maximum length (in characters) for a scheduler task data. WARNING: Do not modify this setting unless you are sure of the current Database length for 'task_data' filed from 'scheduler_data_list' table.</Description>
<Group>Scheduler</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="[1-9]\d*">8000</String><!-- default 8000 -->
</Setting>
</ConfigItem>
</otrs_config>
|