Datadog · Arazzo Workflow

Datadog Create an Observability Pipeline

Version 1.0.0

Create an observability pipeline, retrieve it, then list pipelines to confirm placement.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AnalyticsDashboardsMonitoringPlatformT1VisualizationsArazzoWorkflows

Provider

datadog

Workflows

create-log-pipeline
Create an observability pipeline, get it, then list pipelines.
Creates a new observability pipeline, retrieves it by id to confirm persistence, then lists the configured pipelines to confirm the new pipeline appears among them.
3 steps inputs: filterQuery, name outputs: pipelineId, pipelines
1
createPipeline
Create a new observability pipeline with a Datadog Agent source, a filter processor, and a Datadog Logs destination.
2
getPipeline
Retrieve the newly created pipeline by its id to confirm it was stored with the expected configuration.
3
listPipelines
List the configured pipelines to confirm the new pipeline appears among them and to inspect its placement in the ordering.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Datadog Create an Observability Pipeline
  summary: Create an observability pipeline, retrieve it, then list pipelines to confirm placement.
  description: >-
    Provisions a new Datadog observability pipeline from an inline
    configuration of sources, processors, and destinations, reads the created
    pipeline back by its identifier to confirm it was stored, and finally
    lists the configured pipelines so the new pipeline's placement among the
    existing pipelines can be verified. 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: createApi
  url: ../openapi/datadog-create-api-openapi.yml
  type: openapi
- name: getApi
  url: ../openapi/datadog-get-api-openapi.yml
  type: openapi
- name: listsApi
  url: ../openapi/datadog-lists-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-log-pipeline
  summary: Create an observability pipeline, get it, then list pipelines.
  description: >-
    Creates a new observability pipeline, retrieves it by id to confirm
    persistence, then lists the configured pipelines to confirm the new
    pipeline appears among them.
  inputs:
    type: object
    required:
    - name
    properties:
      name:
        type: string
        description: The display name for the new observability pipeline.
      filterQuery:
        type: string
        description: The include query used by the pipeline filter processor (e.g. service:my-service).
  steps:
  - stepId: createPipeline
    description: >-
      Create a new observability pipeline with a Datadog Agent source, a
      filter processor, and a Datadog Logs destination.
    operationId: CreatePipeline
    requestBody:
      contentType: application/json
      payload:
        data:
          type: pipelines
          attributes:
            name: $inputs.name
            config:
              sources:
              - id: datadog-agent-source
                type: datadog_agent
              processors:
              - id: filter-processor
                type: filter
                include: $inputs.filterQuery
                inputs:
                - datadog-agent-source
              destinations:
              - id: datadog-logs-destination
                type: datadog_logs
                inputs:
                - filter-processor
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      pipelineId: $response.body#/data/id
      pipelineName: $response.body#/data/attributes/name
  - stepId: getPipeline
    description: >-
      Retrieve the newly created pipeline by its id to confirm it was stored
      with the expected configuration.
    operationId: GetPipeline
    parameters:
    - name: pipeline_id
      in: path
      value: $steps.createPipeline.outputs.pipelineId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pipelineId: $response.body#/data/id
      config: $response.body#/data/attributes/config
  - stepId: listPipelines
    description: >-
      List the configured pipelines to confirm the new pipeline appears among
      them and to inspect its placement in the ordering.
    operationId: ListPipelines
    parameters:
    - name: page[size]
      in: query
      value: 25
    - name: page[number]
      in: query
      value: 0
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pipelines: $response.body#/data
  outputs:
    pipelineId: $steps.createPipeline.outputs.pipelineId
    pipelines: $steps.listPipelines.outputs.pipelines

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/datadog-create-log-pipeline-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.