Dynatrace · Arazzo Workflow

Dynatrace Export Logs for SIEM Forwarding

Version 1.0.0

Aggregate logs to size the export, then bulk-export the matching records page by page.

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

Provider

dynatrace

Workflows

export-logs-for-siem
Size a log export with aggregation, then bulk-export the records.
Aggregates the matching logs to estimate volume, then exports the first page of records and returns the slice cursor for continued retrieval.
2 steps inputs: exportQuery, from, groupBy, to outputs: estimatedTopCount, nextSliceKey
1
sizeExport
Aggregate the matching logs grouped by the supplied fields to estimate the volume that the export will produce.
2
exportRecords
Export the first page of matching log records using the slice-based bulk export endpoint, returning the cursor for continued pagination.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dynatrace Export Logs for SIEM Forwarding
  summary: Aggregate logs to size the export, then bulk-export the matching records page by page.
  description: >-
    Prepares a bulk log extract for an external SIEM or archive. The workflow
    first aggregates the matching logs to understand the volume per group, then
    runs the slice-based bulk export endpoint to retrieve the first page of
    records along with the cursor for continued pagination. 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: dynatrace-logs-api-openapi.yml
      confidence: 0.88
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: logsApi
  url: ../openapi/dynatrace-logs-api-openapi.yml
  type: openapi
workflows:
- workflowId: export-logs-for-siem
  summary: Size a log export with aggregation, then bulk-export the records.
  description: >-
    Aggregates the matching logs to estimate volume, then exports the first
    page of records and returns the slice cursor for continued retrieval.
  inputs:
    type: object
    required:
    - exportQuery
    properties:
      exportQuery:
        type: string
        description: DQL query selecting the logs to export.
      groupBy:
        type: string
        description: Comma-separated fields to aggregate by when sizing the export.
      from:
        type: string
        description: Start of the queried time range (e.g. now-24h).
      to:
        type: string
        description: End of the queried time range (e.g. now).
  steps:
  - stepId: sizeExport
    description: >-
      Aggregate the matching logs grouped by the supplied fields to estimate
      the volume that the export will produce.
    operationId: aggregateLogs
    parameters:
    - name: query
      in: query
      value: $inputs.exportQuery
    - name: groupBy
      in: query
      value: $inputs.groupBy
    - name: from
      in: query
      value: $inputs.from
    - name: to
      in: query
      value: $inputs.to
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      topGroup: $response.body#/results/0/groupByFields
      topCount: $response.body#/results/0/count
  - stepId: exportRecords
    description: >-
      Export the first page of matching log records using the slice-based bulk
      export endpoint, returning the cursor for continued pagination.
    operationId: exportLogs
    parameters:
    - name: query
      in: query
      value: $inputs.exportQuery
    - name: from
      in: query
      value: $inputs.from
    - name: to
      in: query
      value: $inputs.to
    - name: sort
      in: query
      value: -timestamp
    - name: pageSize
      in: query
      value: 1000
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstContent: $response.body#/results/0/content
      nextSliceKey: $response.body#/nextSliceKey
  outputs:
    estimatedTopCount: $steps.sizeExport.outputs.topCount
    nextSliceKey: $steps.exportRecords.outputs.nextSliceKey

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-export-logs-for-siem-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.