You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
我已经确认前端,后端,webscoket容器的时间以及数据库的时间都是中国上海时区了时间是一致的,并且删除了原有的workflow,新建了一个workflow,可是workflow还是不会自动触发,只有新建的时候自动触发了一次,并且执行时历史显示
是哪里控制这个时间计算的,是不是因为这个导致我的workflow无法每隔60秒自动执行,我的workflow如下
workflow:
id: alert-status-resolver
name: Alert Status Resolver
description: Automatically resolves alerts whose message JSON contains "alarm_status":"ok".
triggers:
- type: manual
- type: interval
value: 60
steps:
- name: get-alerts
provider:
type: keep
with:
version: 2
time_delta: 7
filter: "message.contains('"alarm_status": "ok"')"
actions:
- name: resolve-alerts
foreach: "{{ steps.get-alerts.results }}"
provider:
type: mock
with:
enrich_alert:
- key: status
value: resolved
disposable: true
Beta Was this translation helpful? Give feedback.
All reactions