Hello Community,
I'm bit confused why my watcher is not calculating the local timezone automatically. The below watcher should trigger hourly from 05:00 until 17:00.
When I check the log in Kibana, the Watcher starts triggering at 06:00, instead at 05:00.
How can I solve this issue? How can I set to use my local timezone?
I fear to adjust my Watchers manually between summer and winter time.
{
"trigger": {
"schedule": {
"weekly": [
{
"on": [
"MON",
"TUE",
"WED",
"THU",
"FRI"
],
"at": [
{
"hour": [
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17
],
"minute": [
0,
5,
10,
15,
20,
25,
30,
35,
40,
45,
50,
55
]
}
]
}
]
}
},