Acceldata · Arazzo Workflow

Acceldata Pipeline Failure Investigation

Version 1.0.0

Find failed pipeline jobs, pull related critical alerts, and acknowledge the first one.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AI AgentsData ManagementData ObservabilityData PipelineData QualityIntelligenceObservabilityArazzoWorkflows

Provider

acceldata

Workflows

pipeline-failure-investigation
Correlate failed pipeline jobs with critical alerts and acknowledge one.
Lists failed pipeline jobs from a start time, queries open critical alerts from that same start time, and branches: when one or more open critical alerts exist it acknowledges the first, otherwise it ends.
3 steps inputs: acknowledgeComment, apiKey, fromTime outputs: acknowledgedAlertId, criticalAlertCount, failedJobCount
1
listFailedJobs
List pipeline jobs that failed since the start time to identify the incident window.
2
listCriticalAlerts
Query open critical alerts raised since the start time to correlate with the failed pipeline jobs.
3
acknowledgeAlert
Acknowledge the first open critical alert to mark the incident as under investigation.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Acceldata Pipeline Failure Investigation
  summary: Find failed pipeline jobs, pull related critical alerts, and acknowledge the first one.
  description: >-
    A pipeline incident flow. The workflow lists failed pipeline jobs in a time
    window, queries the open critical alerts raised during that period, and when
    at least one such alert exists it acknowledges the first one. When no
    critical alerts are open the flow ends. Every step spells out its request
    inline so the flow can be read and executed without opening the underlying
    OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: alertsApi
  url: ../openapi/acceldata-alerts-api-openapi.yml
  type: openapi
- name: pipelineJobsApi
  url: ../openapi/acceldata-pipeline-jobs-api-openapi.yml
  type: openapi
workflows:
- workflowId: pipeline-failure-investigation
  summary: Correlate failed pipeline jobs with critical alerts and acknowledge one.
  description: >-
    Lists failed pipeline jobs from a start time, queries open critical alerts
    from that same start time, and branches: when one or more open critical
    alerts exist it acknowledges the first, otherwise it ends.
  inputs:
    type: object
    required:
    - apiKey
    - fromTime
    properties:
      apiKey:
        type: string
        description: Acceldata API key sent in the X-API-Key header.
      fromTime:
        type: string
        description: Start time (ISO 8601) for the failed-job and alert query range.
      acknowledgeComment:
        type: string
        description: Comment recorded when acknowledging the alert.
  steps:
  - stepId: listFailedJobs
    description: >-
      List pipeline jobs that failed since the start time to identify the
      incident window.
    operationId: listPipelineJobs
    parameters:
    - name: X-API-Key
      in: header
      value: $inputs.apiKey
    - name: status
      in: query
      value: failed
    - name: from_time
      in: query
      value: $inputs.fromTime
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      failedJobCount: $response.body#/total
      firstJobId: $response.body#/data/0/id
  - stepId: listCriticalAlerts
    description: >-
      Query open critical alerts raised since the start time to correlate with
      the failed pipeline jobs.
    operationId: listAlerts
    parameters:
    - name: X-API-Key
      in: header
      value: $inputs.apiKey
    - name: status
      in: query
      value: open
    - name: severity
      in: query
      value: critical
    - name: from_time
      in: query
      value: $inputs.fromTime
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstAlertId: $response.body#/data/0/id
      alertCount: $response.body#/total
    onSuccess:
    - name: criticalAlertsPresent
      type: goto
      stepId: acknowledgeAlert
      criteria:
      - context: $response.body
        condition: $.data.length > 0
        type: jsonpath
    - name: noCriticalAlerts
      type: end
      criteria:
      - context: $response.body
        condition: $.data.length == 0
        type: jsonpath
  - stepId: acknowledgeAlert
    description: >-
      Acknowledge the first open critical alert to mark the incident as under
      investigation.
    operationId: acknowledgeAlert
    parameters:
    - name: X-API-Key
      in: header
      value: $inputs.apiKey
    - name: id
      in: path
      value: $steps.listCriticalAlerts.outputs.firstAlertId
    requestBody:
      contentType: application/json
      payload:
        comment: $inputs.acknowledgeComment
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      alertId: $response.body#/id
      alertStatus: $response.body#/status
  outputs:
    failedJobCount: $steps.listFailedJobs.outputs.failedJobCount
    criticalAlertCount: $steps.listCriticalAlerts.outputs.alertCount
    acknowledgedAlertId: $steps.acknowledgeAlert.outputs.alertId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/acceldata-pipeline-failure-investigation-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.