Dynatrace API

Dynatrace combines full-stack observability and runtime application security with advanced AIOps to deliver answers and intelligent automation from data.

Integrate the Dynatrace API API with the Formatting API

Setup the Dynatrace API API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Dynatrace API and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Dynatrace API

The Dynatrace API provides programmatic access to the vast array of monitoring, performance data, and management operations within the Dynatrace software intelligence platform. With this powerful API, you can automate your monitoring tasks, integrate with your CI/CD pipeline for performance testing, setup custom alerting mechanics, and pull valuable insights into application performance and infrastructure health. Leveraging the Dynatrace API in Pipedream workflows lets you connect and orchestrate these operations with hundreds of other services for enhanced DevOps automation.

Connect Dynatrace API

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    dynatrace_api: {
      type: "app",
      app: "dynatrace_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.dynatrace_api.$auth.environment_id}.live.dynatrace.com/api/v2/events`,
      headers: {
        "Accept": `application/json`,
        "Authorization": `Api-Token ${this.dynatrace_api.$auth.access_token}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})