Datadog · Arazzo Workflow

Datadog Bulk Mute Monitors

Version 1.0.0

Search monitors by tag, then mute a matched monitor to silence alerts.

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

Provider

datadog

Workflows

bulk-mute-monitors
List monitors by tag then mute a matched one.
Searches monitors using name and tag filters and then mutes the first matched monitor for the supplied scope and expiration.
2 steps inputs: end, name, scope, tags outputs: mutedMonitorId, silenced
1
searchMonitors
List monitors filtered by name and tags to find the candidate monitor to silence during the maintenance window.
2
muteMatched
Mute the first matched monitor for the supplied scope and expiration so its alert notifications are suppressed.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Datadog Bulk Mute Monitors
  summary: Search monitors by tag, then mute a matched monitor to silence alerts.
  description: >-
    A bulk maintenance pattern for Datadog monitors. The workflow lists
    monitors filtered by name and tags to find candidates for silencing during
    a maintenance window, then mutes the first matched monitor for a given
    scope and expiration. 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
  x-realizes-capability-ids:
  - BC-4220.20
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-4220.20
      capability_name: Observability Management
      spec: datadog-monitors-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: monitorMutingApi
  url: ../openapi/datadog-monitor-muting-api-openapi.yml
  type: openapi
- name: monitorsApi
  url: ../openapi/datadog-monitors-api-openapi.yml
  type: openapi
workflows:
- workflowId: bulk-mute-monitors
  summary: List monitors by tag then mute a matched one.
  description: >-
    Searches monitors using name and tag filters and then mutes the first
    matched monitor for the supplied scope and expiration.
  inputs:
    type: object
    required:
    - tags
    properties:
      name:
        type: string
        description: Filter monitors by name substring match.
      tags:
        type: string
        description: Comma-separated list of tags to filter monitors by (e.g. env:production).
      scope:
        type: string
        description: The scope expression specifying which groups to mute.
      end:
        type: integer
        description: Unix timestamp in seconds when the mute expires; omit for indefinite.
  steps:
  - stepId: searchMonitors
    description: >-
      List monitors filtered by name and tags to find the candidate monitor to
      silence during the maintenance window.
    operationId: listMonitors
    parameters:
    - name: name
      in: query
      value: $inputs.name
    - name: tags
      in: query
      value: $inputs.tags
    - name: page_size
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      matchedMonitorId: $response.body#/0/id
      matchedMonitorName: $response.body#/0/name
  - stepId: muteMatched
    description: >-
      Mute the first matched monitor for the supplied scope and expiration so
      its alert notifications are suppressed.
    operationId: muteMonitor
    parameters:
    - name: monitor_id
      in: path
      value: $steps.searchMonitors.outputs.matchedMonitorId
    requestBody:
      contentType: application/json
      payload:
        scope: $inputs.scope
        end: $inputs.end
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mutedMonitorId: $response.body#/id
      silenced: $response.body#/options/silenced
  outputs:
    mutedMonitorId: $steps.muteMatched.outputs.mutedMonitorId
    silenced: $steps.muteMatched.outputs.silenced

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-bulk-mute-monitors-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.