Scheduling a monitor |
Top Previous Next |
To schedule a monitor to be run on a one-time or recurring basis go to the Monitors module, select the desired monitor, and click Edit. Next, scroll to the bottom of the dialog and enable the Schedule automatic run checkbox. Lastly, enter the date/time conditions for which this monitor should be run and click OK.
The settings shown in Figure 13 below are an example of a monitor to be run every day at 5:30 AM local time.
Figure 13
The scheduling follows cron-like expressions, which are as follows: Minute - The minute of the hour. Allowed values include 0-59. Allowed special characters are , - * /
Hour - The hour of the day. Allowed values include 0-23. Allowed special characters are , - * /
Day of month - The day of the month. Allowed values include 1-31. Allowed special characters are , - * ? / L W
Month - The month of the year. Allowed values include 1-12 or JAN-DEC. Allowed special characters are , - * /
Day of week - The day of the week where the 1st day of the week is Sunday. Allowed values include 1-7 or SUN-SAT. Allowed special characters are , - * ? / L #
Special characters defined:
Note: Support for specifying both a Day of week and a Day of month value is not allowed (you must currently use the ‘?’ character in one of these fields).
More Examples
5:00 AM every day
Minute = 0 Hour = 5 Day of Month = * Month = * Day of Week = ?
3:30 PM every Sunday
Minute = 30 Hour = 15 Day of Month = ? Month = * Day of Week = 1
First day of the month, every month at 1 AM
Minute = 0 Hour = 1 Day of Month = 1 Month = * Day of Week = ?
|