Dynatrace · Arazzo Workflow

Dynatrace Find Problems Affecting a Named Service

Version 1.0.0

Resolve a service by name, read its details, and list problems impacting it.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservabilityArazzoWorkflows

Provider

dynatrace

Workflows

service-problem-lookup
Resolve a service by name and list problems affecting it.
Looks up a service by name, reads the entity, and lists problems whose affected or impacted entities include that service.
3 steps inputs: from, serviceName outputs: entityId, problemCount, topProblemId
1
resolveService
Resolve the service display name to its Dynatrace entity ID for use in the problem entity selector.
2
readEntity
Read the resolved entity with its tags and management zones to provide context alongside the problem list.
3
listServiceProblems
List problems whose affected or impacted entities include the resolved service, over the requested time range.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dynatrace Find Problems Affecting a Named Service
  summary: Resolve a service by name, read its details, and list problems impacting it.
  description: >-
    Answers "is this named service healthy?" by chaining entity resolution with
    problem discovery. The workflow looks up the service by its display name to
    obtain the entity ID, reads the entity for context, and then lists problems
    scoped to that entity. 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: entitiesApi
  url: ../openapi/dynatrace-entities-api-openapi.yml
  type: openapi
- name: problemsApi
  url: ../openapi/dynatrace-problems-api-openapi.yml
  type: openapi
workflows:
- workflowId: service-problem-lookup
  summary: Resolve a service by name and list problems affecting it.
  description: >-
    Looks up a service by name, reads the entity, and lists problems whose
    affected or impacted entities include that service.
  inputs:
    type: object
    required:
    - serviceName
    properties:
      serviceName:
        type: string
        description: The display name of the service to investigate.
      from:
        type: string
        description: Start of the problem query time range (e.g. now-24h).
  steps:
  - stepId: resolveService
    description: >-
      Resolve the service display name to its Dynatrace entity ID for use in
      the problem entity selector.
    operationId: lookupEntity
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.serviceName
        type: SERVICE
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      entityId: $response.body#/entityId
      displayName: $response.body#/displayName
  - stepId: readEntity
    description: >-
      Read the resolved entity with its tags and management zones to provide
      context alongside the problem list.
    operationId: getEntity
    parameters:
    - name: entityId
      in: path
      value: $steps.resolveService.outputs.entityId
    - name: fields
      in: query
      value: +tags,+managementZones
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      type: $response.body#/type
      lastSeenTms: $response.body#/lastSeenTms
  - stepId: listServiceProblems
    description: >-
      List problems whose affected or impacted entities include the resolved
      service, over the requested time range.
    operationId: listProblems
    parameters:
    - name: entitySelector
      in: query
      value: "entityId($steps.resolveService.outputs.entityId)"
    - name: from
      in: query
      value: $inputs.from
    - name: pageSize
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      totalCount: $response.body#/totalCount
      topProblemId: $response.body#/problems/0/problemId
  outputs:
    entityId: $steps.resolveService.outputs.entityId
    problemCount: $steps.listServiceProblems.outputs.totalCount
    topProblemId: $steps.listServiceProblems.outputs.topProblemId

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/dynatrace-service-problem-lookup-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.