Hello all, We are currently using Prefect Cloud an...
# prefect-cloud
j
Hello all, We are currently using Prefect Cloud and we set up an automation that send a notification If a flow is running for more than 1 day. This has been working properly for the past weeks but since this weekend, we are getting notification even if the flow just ran for a few minutes. Is anyone encountering the same issue? (Attached the Trigger configuration below)
Copy code
{
  "type": "event",
  "match": {
    "prefect.resource.id": "prefect.flow-run.*"
  },
  "match_related": {
    "prefect.resource.id": [
      "prefect.tag.owner:dsf"
    ],
    "prefect.resource.role": "tag"
  },
  "after": [
    "prefect.flow-run.Running"
  ],
  "expect": [
    "prefect.flow-run.*"
  ],
  "for_each": [
    "prefect.resource.id"
  ],
  "posture": "Proactive",
  "threshold": 1,
  "within": 86400
}
c
Hi Jezreel, my apologies for that! We released a change Friday afternoon ET intended to make automation processing more stable, but it looks like we missed the mark. We're going to be correcting that this morning
We've released the fix for this and we should expect all proactive automations to be more stable due to this now. Please let us know if you hit any more issues.
j
Thank you very much @Chris Guidry