Sysdig · Arazzo Workflow

Sysdig Build Metric Dashboard

Version 1.0.0

Discover a metric, confirm its descriptor, and create a dashboard for it.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Cloud SecurityContainersKubernetesRuntime SecuritySecurityVulnerability ManagementMonitoringObservabilityCSPMComplianceArazzoWorkflows

Provider

sysdig

Workflows

build-metric-dashboard
Find a metric and stand up a dashboard that charts it.
Searches for a metric by name, confirms it via the descriptors endpoint, and creates a dashboard with a panel bound to the discovered metric.
3 steps inputs: bearerToken, dashboardName, metricQuery outputs: dashboardId, metricId, metricName
1
findMetric
Search the metric catalog for a metric matching the query.
2
getDescriptors
Confirm the metric exists by reading the metric descriptors.
3
createDashboard
Create a dashboard with a panel bound to the discovered metric.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sysdig Build Metric Dashboard
  summary: Discover a metric, confirm its descriptor, and create a dashboard for it.
  description: >-
    A metrics onboarding flow for Sysdig Monitor. It searches the metric catalog
    for a matching metric, confirms the metric exists by reading the metric
    descriptors, and creates a new dashboard whose panel references the
    discovered metric id. The dashboard is then read back to confirm it
    persisted. 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: dashboardsApi
  url: ../openapi/sysdig-dashboards-api-openapi.yml
  type: openapi
- name: metricsApi
  url: ../openapi/sysdig-metrics-api-openapi.yml
  type: openapi
workflows:
- workflowId: build-metric-dashboard
  summary: Find a metric and stand up a dashboard that charts it.
  description: >-
    Searches for a metric by name, confirms it via the descriptors endpoint, and
    creates a dashboard with a panel bound to the discovered metric.
  inputs:
    type: object
    required:
    - bearerToken
    - metricQuery
    - dashboardName
    properties:
      bearerToken:
        type: string
        description: Sysdig API bearer token used for Authorization.
      metricQuery:
        type: string
        description: Substring used to search the metric catalog.
      dashboardName:
        type: string
        description: Name for the dashboard to create.
  steps:
  - stepId: findMetric
    description: Search the metric catalog for a metric matching the query.
    operationId: findMetrics
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.bearerToken
    - name: name
      in: query
      value: $inputs.metricQuery
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      metricId: $response.body#/metrics/0/id
      metricName: $response.body#/metrics/0/name
  - stepId: getDescriptors
    description: Confirm the metric exists by reading the metric descriptors.
    operationId: getMetricDescriptors
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.bearerToken
    requestBody:
      contentType: application/json
      payload:
        metrics:
        - id: $steps.findMetric.outputs.metricId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      descriptors: $response.body#/metrics
  - stepId: createDashboard
    description: Create a dashboard with a panel bound to the discovered metric.
    operationId: createDashboard
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.bearerToken
    requestBody:
      contentType: application/json
      payload:
        dashboard:
          name: $inputs.dashboardName
          description: Auto-generated dashboard for the discovered metric.
          shared: false
          panels:
          - metricId: $steps.findMetric.outputs.metricId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      dashboardId: $response.body#/dashboard/id
  outputs:
    metricId: $steps.findMetric.outputs.metricId
    metricName: $steps.findMetric.outputs.metricName
    dashboardId: $steps.createDashboard.outputs.dashboardId

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/sysdig-build-metric-dashboard-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.