Cross-Provider Workflow

Sysdig Secure Event to Opsgenie Alert to Slack

Version 1.0.0

Pull a Sysdig Secure event, raise an Opsgenie alert, then notify Slack.

1 workflow 3 source APIs 3 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

sysdig opsgenie slack

Workflows

secure-event-to-opsgenie-to-slack
List a Sysdig Secure event, raise an Opsgenie alert, and notify Slack.
Retrieves runtime security events from Sysdig Secure, raises an Opsgenie alert for the top event, and posts a Slack message confirming the page.
3 steps inputs: slackChannel outputs: eventName, messageTs, requestId
1
list-secure-events
$sourceDescriptions.sysdigSecure.listSecureEvents
List runtime security events from Sysdig Secure.
2
raise-opsgenie-alert
$sourceDescriptions.opsgenieAlert.createAlert
Raise an Opsgenie alert for the security event.
3
notify-slack
$sourceDescriptions.slackChat.postChatPostmessage
Notify a Slack channel that an Opsgenie alert was raised.

Source API Descriptions

Arazzo Workflow Specification

dev-sysdig-secure-event-to-opsgenie-slack.yml Raw ↑
arazzo: 1.0.1
info:
  title: Sysdig Secure Event to Opsgenie Alert to Slack
  summary: Pull a Sysdig Secure event, raise an Opsgenie alert, then notify Slack.
  description: >-
    A DevSecOps escalation workflow that lists runtime security events from
    Sysdig Secure, raises an Opsgenie alert to page the on-call responder, and
    posts a Slack notification. Demonstrates chaining a container-security
    provider, an alerting provider, and a chat provider in a single Arazzo
    workflow.
  version: 1.0.0
sourceDescriptions:
  - name: sysdigSecure
    url: https://raw.githubusercontent.com/api-evangelist/sysdig/refs/heads/main/openapi/sysdig-activity-audit-api-openapi.yml
    type: openapi
  - name: opsgenieAlert
    url: https://raw.githubusercontent.com/api-evangelist/opsgenie/refs/heads/main/openapi/opsgenie-alerts-api-openapi.yml
    type: openapi
  - name: slackChat
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-chat-api-openapi.yml
    type: openapi
workflows:
  - workflowId: secure-event-to-opsgenie-to-slack
    summary: List a Sysdig Secure event, raise an Opsgenie alert, and notify Slack.
    description: >-
      Retrieves runtime security events from Sysdig Secure, raises an Opsgenie
      alert for the top event, and posts a Slack message confirming the page.
    inputs:
      type: object
      properties:
        slackChannel:
          type: string
    steps:
      - stepId: list-secure-events
        description: List runtime security events from Sysdig Secure.
        operationId: $sourceDescriptions.sysdigSecure.listSecureEvents
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          eventName: $response.body#/data/0/name
          eventSeverity: $response.body#/data/0/severity
      - stepId: raise-opsgenie-alert
        description: Raise an Opsgenie alert for the security event.
        operationId: $sourceDescriptions.opsgenieAlert.createAlert
        requestBody:
          contentType: application/json
          payload:
            message: $steps.list-secure-events.outputs.eventName
            priority: P1
            tags:
              - sysdig
              - runtime-security
        successCriteria:
          - condition: $statusCode == 202
        outputs:
          requestId: $response.body#/requestId
      - stepId: notify-slack
        description: Notify a Slack channel that an Opsgenie alert was raised.
        operationId: $sourceDescriptions.slackChat.postChatPostmessage
        requestBody:
          contentType: application/json
          payload:
            channel: $inputs.slackChannel
            text: $steps.list-secure-events.outputs.eventName
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          messageTs: $response.body#/ts
    outputs:
      eventName: $steps.list-secure-events.outputs.eventName
      requestId: $steps.raise-opsgenie-alert.outputs.requestId
      messageTs: $steps.notify-slack.outputs.messageTs

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/dev-sysdig-secure-event-to-opsgenie-slack"
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.