Sentry · Arazzo Workflow

Sentry Create a Cron Monitor and Verify Check-ins

Version 1.0.0

Create a cron-job monitor for an organization, confirm it, and list its check-ins.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time MonitoringArazzoWorkflows

Provider

sentry-system

Workflows

create-cron-monitor
Create a cron monitor and verify it by listing its check-ins.
Creates a cron-job monitor bound to a project with a crontab schedule, confirms the monitor via retrieval, and lists its check-ins to verify reporting.
3 steps inputs: monitorName, organizationIdOrSlug, project, schedule, timezone outputs: latestCheckInId, monitorSlug, monitorStatus
1
createMonitor
Create a new cron-job monitor with a crontab schedule bound to the supplied project.
2
confirmMonitor
Retrieve the newly created monitor to confirm its configuration before checking for reported check-ins.
3
listCheckIns
List the monitor's check-ins so the operator can verify whether the scheduled job has reported in yet.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sentry Create a Cron Monitor and Verify Check-ins
  summary: Create a cron-job monitor for an organization, confirm it, and list its check-ins.
  description: >-
    The setup flow for Sentry Crons monitoring of scheduled jobs. The workflow
    creates a cron-job monitor with a crontab schedule, retrieves the monitor to
    confirm its slug and configuration, and lists the monitor's check-ins so the
    operator can verify whether the job has reported in. 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: sentry-system-monitors-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: checkInsApi
  url: ../openapi/sentry-system-check-ins-api-openapi.yml
  type: openapi
- name: monitorsApi
  url: ../openapi/sentry-system-monitors-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-cron-monitor
  summary: Create a cron monitor and verify it by listing its check-ins.
  description: >-
    Creates a cron-job monitor bound to a project with a crontab schedule,
    confirms the monitor via retrieval, and lists its check-ins to verify
    reporting.
  inputs:
    type: object
    required:
    - organizationIdOrSlug
    - monitorName
    - schedule
    - project
    properties:
      organizationIdOrSlug:
        type: string
        description: The ID or slug of the organization.
      monitorName:
        type: string
        description: The human-readable name of the monitor.
      schedule:
        type: string
        description: A crontab expression for the monitor schedule (e.g. "0 * * * *").
      project:
        type: string
        description: The project slug the monitor belongs to.
      timezone:
        type: string
        description: The timezone for the monitor schedule (e.g. "UTC").
  steps:
  - stepId: createMonitor
    description: >-
      Create a new cron-job monitor with a crontab schedule bound to the
      supplied project.
    operationId: createMonitor
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.monitorName
        type: cron_job
        project: $inputs.project
        config:
          schedule_type: crontab
          schedule: $inputs.schedule
          timezone: $inputs.timezone
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      monitorSlug: $response.body#/slug
  - stepId: confirmMonitor
    description: >-
      Retrieve the newly created monitor to confirm its configuration before
      checking for reported check-ins.
    operationId: retrieveMonitor
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: monitor_id_or_slug
      in: path
      value: $steps.createMonitor.outputs.monitorSlug
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      monitorSlug: $response.body#/slug
      monitorStatus: $response.body#/status
  - stepId: listCheckIns
    description: >-
      List the monitor's check-ins so the operator can verify whether the
      scheduled job has reported in yet.
    operationId: listMonitorCheckIns
    parameters:
    - name: organization_id_or_slug
      in: path
      value: $inputs.organizationIdOrSlug
    - name: monitor_id_or_slug
      in: path
      value: $steps.confirmMonitor.outputs.monitorSlug
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      latestCheckInId: $response.body#/0/id
  outputs:
    monitorSlug: $steps.confirmMonitor.outputs.monitorSlug
    monitorStatus: $steps.confirmMonitor.outputs.monitorStatus
    latestCheckInId: $steps.listCheckIns.outputs.latestCheckInId

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/sentry-system-create-cron-monitor-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.