I have a scheduled alert which get trigger every hour, but i don't want alert to get trigger at 2AM.
Please give me some suggetion.
Thank you in advance
Try this cron, (running for hour 0 to 1, skip 2 and then from hour 3 to 23).
0 0-1,3-23 * * *
Use a cron schedule instead of a basic schedule for the alert. For example, this runs the alert at the top of each hour from 0700-2300.
0 7-23 * * *