Skip to content
| Marketplace
Sign in
Azure DevOps>Azure Pipelines>Datadog Continuous Testing
Datadog Continuous Testing

Datadog Continuous Testing

Datadog

datadoghq.com
|
272 installs
| (4) | Free
Use Browser and API tests in your Azure pipelines with Datadog Continuous Testing
Get it free

Datadog Continuous Testing for Azure DevOps

Visual Studio Marketplace Version Build Status License

Overview

With the Datadog Continuous Testing Azure DevOps Extension, you can run Synthetic tests within your Azure Pipeline configuration and ensure all your teams using Azure DevOps can benefit from Synthetic tests at every stage of the software lifecycle. You can run SyntheticsRunTests as a task.

Authentication

Service Connection

To connect to your Datadog site, Datadog recommends setting up a custom service connection when configuring the Synthetics Run Test task.

You need to provide the following inputs:

  • Datadog site: Which Datadog site to connect and send data to.
  • Custom subdomain (default: app): The name of the custom subdomain set to access your Datadog application. If the URL used to access Datadog is myorg.datadoghq.com, this value needs to be set to myorg.
  • API Key: Your Datadog API key. This key is created by your Datadog organization.
  • Application key: Your Datadog application key. This key is created by your Datadog organization.

API and Application keys

  • API Key: Your Datadog API key. This key is created by your Datadog organization and is accessed as an environment variable.
  • Application key: Your Datadog application key. This key is created by your Datadog organization and is accessed as an environment variable.
  • Datadog site: The Datadog site to connect and send data to.
  • Custom subdomain (optional): The name of the custom subdomain set to access your Datadog application. If the URL used to access Datadog is myorg.datadoghq.com, this value needs to be set to myorg.

Setup

To connect to your Datadog account, create a Datadog CI service connection in your Azure pipelines project. Once created, all you need is the name of the service connection in the tasks.

  1. Install the Datadog Continuous Testing extension from the Visual Studio Marketplace in your Azure Organization.
  2. Add your Datadog API and application keys in the Datadog CI service connection, or as secrets to your Azure Pipelines project.
  3. In your Azure DevOps pipeline, use the SyntheticsRunTests task.

Your task can be simple or complex.

Simple usage

Note: We recently changed the major version of the task from SyntheticsRunTests@0 to SyntheticsRunTests@1.

This is NOT a breaking change, but an alignment between the task version and the extension version.

Example task using public IDs

- task: SyntheticsRunTests@1
  displayName: Run Datadog Synthetic tests
  inputs:
    authenticationType: 'connectedService'
    connectedService: 'my-datadog-ci-connected-service'
    publicIds: |
      abc-d3f-ghi
      jkl-mn0-pqr

Example task using existing synthetics.json files

- task: SyntheticsRunTests@1
  displayName: Run Datadog Synthetic tests
  inputs:
    authenticationType: 'connectedService'
    connectedService: 'my-datadog-ci-connected-service'
    files: 'e2e-tests/*.synthetics.json'

For an example test file, see this test.synthetics.json file.

Example task using pipeline secrets for authentication

- task: SyntheticsRunTests@1
  inputs:
    authenticationType: 'apiAppKeys'
    apiKey: '$(DatadogApiKey)'
    appKey: '$(DatadogAppKey)'
    datadogSite: '$(DatadogSite)'
    subdomain: 'myorg'

Complex usage

Note: We recently changed the major version of the task from SyntheticsRunTests@0 to SyntheticsRunTests@1.

This is NOT a breaking change, but an alignment between the task version and the extension version.

Example task using the testSearchQuery

- task: SyntheticsRunTests@1
  displayName: Run Datadog Synthetic tests
  inputs:
    authenticationType: 'connectedService'
    connectedService: 'my-datadog-ci-connected-service'
    testSearchQuery: 'tag:e2e-tests'

Example task using the testSearchQuery and variable overrides

- task: SyntheticsRunTests@1
  displayName: Run Datadog Synthetic tests
  inputs:
    authenticationType: 'connectedService'
    connectedService: 'my-datadog-ci-connected-service'
    testSearchQuery: 'tag:e2e-tests'
    variables: |
      START_URL=https://staging.website.com
      PASSWORD=$(StagingPassword)

Example task using a global configuration file with configPath

By default, the path to the global configuration file is datadog-ci.json. You can override this path with the config_path input.

- task: SyntheticsRunTests@1
  displayName: Run Datadog Synthetic tests
  inputs:
    authenticationType: 'connectedService'
    configPath: './global.config.json'
    connectedService: 'my-datadog-ci-connected-service'

For an example of a global configuration file, see this global.config.json file.

Inputs

Name Requirement Description
apiKey required Your Datadog API key when using the apiAppKeys authentication type. This key is created by your Datadog organization and should be stored as a secret.
appKey required Your Datadog application key when using the apiAppKeys authentication type. This key is created by your Datadog organization and should be stored as a secret.
authenticationType required The type of authentication you want Datadog to use, either connectedService or apiAppKeys.
batchTimeout optional The duration (in milliseconds) after which the batch fails as timed out. Default: 30 minutes.
connectedService required The name of the Datadog CI service connection to use when using the connectedService authentication type.
configPath optional The global JSON configuration used when launching tests. For more information, see the example configuration. Default: datadog-ci.json.
datadogSite optional The Datadog site when using the apiAppKeys authentication type. Default: datadoghq.com.
failOnCriticalErrors optional Fail the CI job if no tests were triggered, or results could not be fetched from Datadog. Default: false.
failOnMissingTests optional Fail the CI job if at least one specified test with a public ID (using publicIds or listed in a test file) is missing in a run (for example, if it has been deleted programmatically or on the Datadog site). Default: false.
failOnTimeout optional Fail the CI job if at least one test exceeds the default test timeout. Default: true.
files optional Glob pattern to detect Synthetic tests' config files. Default: {,!(node_modules)/**/}*.synthetics.json.
jUnitReport optional The filename for a JUnit report if you want to generate one.
publicIds optional Public IDs of Synthetic tests to run, separated by newlines or commas. If no value is provided, tests are discovered in *.synthetics.json files.
subdomain optional The name of the custom subdomain set to access your Datadog application when using the apiAppKeys authentication type. If the URL used to access Datadog is myorg.datadoghq.com, this value needs to be set to myorg. Default: app.
testSearchQuery optional Trigger tests corresponding to a search query. This can be useful if you are tagging your test configurations. For more information, see rules and best practices for naming tags.
variables optional Key-value pairs for injecting variables into tests, separated by newlines or commas. For example: START_URL=https://example.org,MY_VARIABLE=My title. Default: [].

Further reading

Additional helpful documentation, links, and articles:

  • Continuous Testing and CI/CD Configuration
  • Best practices for continuous testing with Datadog
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft
OSZAR »