Oracle Enterprise Manager · Arazzo Workflow

Oracle Enterprise Manager Target Metric Trend

Version 1.0.0

Resolve a target by name, then pull a metric time series over a window.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracleArazzoWorkflows

Provider

oracle-enterprise-manager

Workflows

target-metric-trend
Find a target by name and read a metric time series for it over a window.
Resolves a target by name, then retrieves numeric metric data points for a chosen metric group and column over a start/end time range.
2 steps inputs: endTime, limit, metricColumns, metricGroups, startTime, targetName, targetType outputs: resolvedName, series
1
resolveTarget
Resolve the target by name so the time-series query can be scoped to its exact name and type.
2
readTimeSeries
Read numeric metric data points over the requested time range for the resolved target, metric group, and column.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle Enterprise Manager Target Metric Trend
  summary: Resolve a target by name, then pull a metric time series over a window.
  description: >-
    Builds a performance trend for a named target. The workflow resolves the
    target by name to confirm it is monitored and capture its exact name and
    type, then queries the metric time series endpoint for numeric data points
    over the requested time range, scoped to the resolved target and the chosen
    metric group and column. Two real read operations are chained, with a branch
    that only requests the time series once a matching target has been found.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-600.40
  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-600.40
      capability_name: IT Operations Management
      spec: oracle-enterprise-manager-metrics-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: metricsApi
  url: ../openapi/oracle-enterprise-manager-metrics-api-openapi.yml
  type: openapi
- name: targetsApi
  url: ../openapi/oracle-enterprise-manager-targets-api-openapi.yml
  type: openapi
workflows:
- workflowId: target-metric-trend
  summary: Find a target by name and read a metric time series for it over a window.
  description: >-
    Resolves a target by name, then retrieves numeric metric data points for a
    chosen metric group and column over a start/end time range.
  inputs:
    type: object
    required:
    - targetName
    - metricGroups
    - metricColumns
    - startTime
    - endTime
    properties:
      targetName:
        type: string
        description: Name (or partial name) of the target to trend.
      targetType:
        type: string
        description: Optional target type filter for the target lookup.
      metricGroups:
        type: string
        description: Comma-separated list of metric group names to read.
      metricColumns:
        type: string
        description: Comma-separated list of metric column names to read.
      startTime:
        type: string
        description: Start of the time range in ISO 8601 format.
      endTime:
        type: string
        description: End of the time range in ISO 8601 format.
      limit:
        type: integer
        description: Maximum number of data series to return.
        default: 25
  steps:
  - stepId: resolveTarget
    description: >-
      Resolve the target by name so the time-series query can be scoped to its
      exact name and type.
    operationId: listTargets
    parameters:
    - name: targetName
      in: query
      value: $inputs.targetName
    - name: targetType
      in: query
      value: $inputs.targetType
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      resolvedName: $response.body#/items/0/targetName
      resolvedType: $response.body#/items/0/targetType
    onSuccess:
    - name: targetResolved
      type: goto
      stepId: readTimeSeries
      criteria:
      - context: $response.body
        condition: $.items.length > 0
        type: jsonpath
  - stepId: readTimeSeries
    description: >-
      Read numeric metric data points over the requested time range for the
      resolved target, metric group, and column.
    operationId: getMetricTimeSeries
    parameters:
    - name: targetNames
      in: query
      value: $steps.resolveTarget.outputs.resolvedName
    - name: targetTypes
      in: query
      value: $steps.resolveTarget.outputs.resolvedType
    - name: metricGroups
      in: query
      value: $inputs.metricGroups
    - name: metricColumns
      in: query
      value: $inputs.metricColumns
    - name: startTime
      in: query
      value: $inputs.startTime
    - name: endTime
      in: query
      value: $inputs.endTime
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      series: $response.body#/items
  outputs:
    resolvedName: $steps.resolveTarget.outputs.resolvedName
    series: $steps.readTimeSeries.outputs.series

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/oracle-enterprise-manager-target-metric-trend-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.