Orchestrator

blaw_occ_enforcement_tracker

Version: 20260602153925-ec57ea76

Graph

enumerate (enumerate)
dispatch (http_dispatch)
wait (batch_await)
summary (batch_summary)
alert (notify)

Node Configuration

enumerate (enumerate)
KeyValue
params
hours_back
function
response_key
dispatch (http_dispatch)
KeyValue
source_key
enrichment_key
ace_environment
wait (batch_await)
KeyValue
timeout_minutes
poll_interval_seconds
summary (batch_summary)
KeyValue
notify_on_failure_rate
alert (notify)
KeyValue
on
channel
Saves to disk and updates any active crons using this pipeline

Run with Parameters

ParameterValueDescription
hours_back How far back to query (hours)
page_size Max results per BDMS page
ace_environment ACE target environment (sb, dev, prd)

Pipeline JSON

{
  "edges": [
    {
      "to": "enumerate",
      "from": "__start__"
    },
    {
      "to": "dispatch",
      "from": "enumerate"
    },
    {
      "to": "wait",
      "from": "dispatch"
    },
    {
      "to": "summary",
      "from": "wait"
    },
    {
      "to": "alert",
      "from": "summary"
    },
    {
      "to": "__end__",
      "from": "alert"
    }
  ],
  "nodes": [
    {
      "name": "enumerate",
      "type": "enumerate",
      "config": {
        "params": {
          "hours_back": 24
        },
        "function": "blaw_occ_enforcement_tracker",
        "response_key": "payloads"
      }
    },
    {
      "name": "dispatch",
      "type": "http_dispatch",
      "config": {
        "source_key": "payloads",
        "enrichment_key": "blaw-occ-enforcement-tracker",
        "ace_environment": "sb"
      }
    },
    {
      "name": "wait",
      "type": "batch_await",
      "config": {
        "timeout_minutes": 45,
        "poll_interval_seconds": 5
      }
    },
    {
      "name": "summary",
      "type": "batch_summary",
      "config": {
        "notify_on_failure_rate": 0.1
      }
    },
    {
      "name": "alert",
      "type": "notify",
      "config": {
        "on": "alert",
        "channel": "sns"
      }
    }
  ]
}
Back to Pipelines