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 Gmail API

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

Send Email with the Gmail API

Send an email from your Google Workspace email account

 
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}`,
      },
    })
  },
})

Overview of Gmail

By connecting your personal Gmail account to Pipedream, you'll be able to incorporate email into whatever you're building with any of the thousands of apps that are available on Pipedream.

Connect Gmail

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    gmail: {
      type: "app",
      app: "gmail",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.gmail.$auth.oauth_access_token}`,
      },
    })
  },
})