---
isPrivate: true
title: Post AppDynamics Events to Datadog
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: >-
  Docs > Extend Datadog > Extending Datadog FAQ > Post AppDynamics Events to
  Datadog
---

# Post AppDynamics Events to Datadog

This article allows you to submit events from your AppDynamics Application into your Datadog Event explorer. **Note**: This plug-in was written by the team at AppDynamics and is not supported by Datadog. Should you encounter any issues [contact the AppDynamics Support team](https://www.appdynamics.com/support)

Prerequisites: Running AppDynamics 4.1 or later

First, create a Datadog Policy Single Violation Only HTTP Template:

```json
{
  "title": "${latestEvent.displayName} - ${policy.name} ",
  "text": "${latestEvent.summaryMessage} ${latestEvent.guid} ${latestEvent.eventTypeKey} Policy Name - ${policy.name} Policy ID - ${policy.id}  Policy Digest : ${policy.digest} ${policy.digestDurationInMins} ",
  "alert_type": "${topSeverity}",
  "priority": "${priority}",
  "aggregation_key": " ${policy.id} ",
  "tags": [
    "guid:${latestEvent.guid}",
    "eventid:${latestEvent.id}",
    "environment:${Environment}",
    "os:${OS}",
    "platform:${Platform}"
  ]
}
```

{% image
   source="https://datadog-docs.imgix.net/images/extend/faq/step_1_appdynamics.9b243e38fb3dfae2e37a0970db8cf941.png?auto=format"
   alt="step_1_appdynamics" /%}

Latest Event:

```json
{
  "title": "${latestEvent.displayName}",
  "text": "${latestEvent.summaryMessage} ${latestEvent.eventTypeKey}",
  "alert_type": "${topSeverity}",
  "priority": "${priority}",
  "aggregation_key": "${latestEvent.guid}",
  "tags": [
    "guid:${latestEvent.guid}",
    "eventid:${latestEvent.id}",
    "environment:${Environment}",
    "os:${OS}",
    "platform:${Platform}"
  ]
}
```

{% image
   source="https://datadog-docs.imgix.net/images/extend/faq/latest_event.f189e47525c8727e8ade78ad47162f11.png?auto=format"
   alt="latest_event" /%}

You can use also use Email Templates:

```json
{
  "title": "AppDynamicsEvent",
  "text": "ApplicationChangeEvent",
  "priority": "normal",
  "tags": ["os:windows"],
  "alert_type": "info"
}
```

{% image
   source="https://datadog-docs.imgix.net/images/extend/faq/email_template.cc5cd5881fddcbed45c8895f2c1b1d61.png?auto=format"
   alt="email_template" /%}
