File name
schedule.conf |
Use
Specify operation schedule of an agent for connecting configuration information.
File Location
Management Server (three hierarchical composition)
Windows | [ CMDB manager's data base storage directory]\FJSVcmdba\etc |
Linux | /etc/opt/FJSVcmdba/etc |
Linked Server
Windows | [[Agent installed directory]\CMDB\FJSVcmdba\etc |
Linux | /etc/opt/FJSVcmdba/etc |
File Format
#] <agent type> <minute> <hour> <day> <month> <day of week> [<parameter>] ... |
Parameter
This file defines one schedule from the following parameters.
If #(sharp) is applied at the head of a line, it becomes a comment. Because the agent which is set up is defined operation schedule by default, apply # at the head of a line when you need not collect information regularly.
Specify type of the agent which operates along schedule.
Agent types which can be specified are shown below. Specify type of agent which is set up.
AGT_CENTINV :An agent for inventory information of Systemwalker Centric Manager.
AGT_CENTREP :An agent for node information of Systemwalker Centric Manager.
AGT_ADSC :An agent for auto detection of node.
AGT_INV :An agent for collection of IT resource information.
From 0 to 59
From 0 to 23
From 1 to 31
From 1 to 12
From 0 to 6
0:Sunday 1:Monday 2:Tuesday 3:Wednesday 4:Thursday 5:Friday 6:Saturday
This parameter is effective when you specify "AGT_INV" to type of agent.
You can specify schedule for collection of information in each group by specifying group name that is specified by the definition file for collection of IT resource information.
When group is not defined in the definition file for collection of IT resource information, omit this parameter.
All groups are collected when this parameter is omitted and group is defined in the definition file for collection of IT resource information.
List specification: Two or more values can be specified by comma (",").
Example: 0,10,20,30,40,50
The range specification: The range from the beginning value to the end value can be specified by hyphen ("-").
Example: 0-40
This description and the list specification (0,1,2, ... ,39,40) are same meaning.
Interval specification: The range can be specified by slash ("/").
Example: 0-59/10
This description and the list specification (0,1,2, ... ,39,40,50) are same meaning.
When asterisk ("*") is specified, it has the same meaning as the specification of all the values where the field can be taken.
Note
When you edit this file for the Management Server, the change becomes effective by restarting Systemwalker Runbook Automation. When you edit this file for the Linked Server, the change becomes effective by restarting the agent service.
Example
Under the following definition, AGT_INV collects information automatically on the first day of every month at 0:30.
AGT_INV 30 0 1 * * group1 |
Under the following definition, AGT_INV collects information automatically on every Sunday at 1:00.
AGT_INV 0 1 * * 0 group1 |
Under the following definition, AGT_INV collects information automatically on February 1 at 22:30.
AGT_ADSC 30 22 1 2 * |
Under the following definition, AGT_INV collects information automatically from group1 on every Monday at 2:00.
In addition, AGT_INV collects information automatically from group2 on every Tuesday at 2:00.
AGT_INV 0 2 * * 1 group1 AGT_INV 0 2 * * 2 group2 |
Under the following definition, AGT_INV doesn't collect information automatically.
# AGT_INV 30 4 * * * |