# gae_datadog **Repository Path**: mirrors_DataDog/gae_datadog ## Basic Information - **Project Name**: gae_datadog - **Description**: ## Auto-archived due to inactivity. ## Fetch metrics from your GAE project and send them to Datadog - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Note This integration of Google App Engine (GAE) with Datadog is outdated and is no longer supported. For the latest integration procedure, follow the documentation [here](https://docs.datadoghq.com/integrations/google_app_engine/). # Use Datadog on Google App Engine (Deprecated) ## Download the Datadog GAE module ``` cd $MY_GAE_APPLICATION git clone https://github.com/DataDog/gae_datadog ``` ## app.yaml setup You need to serve the Datadog requests to the Datadog module, include in your `app.yaml`: ```yaml handlers: # Should probably be at the beginning of the list # so it's not clobbered by a catchall route - url: /datadog script: gae_datadog.datadog.app ``` Then set your `` key from the [integration settings](https://app.datadoghq.com/account/settings#api) on Datadog in your `app.yaml`: ```yaml env_variables: DATADOG_API_KEY: '' ``` **Note**: To send custom metrics to Datadog, see the [Datadog Libraries documentation page](https://docs.datadoghq.com/libraries) for a list of all official and community-contributed API and DogStatsD client libraries.