﻿---
title: Configure a Synthetics project
description: Synthetic tests support the configuration of dynamic parameters that can be used in Synthetics projects. In addition, the Synthetics agent, which is built...
url: https://www.elastic.co/elastic/docs-builder/docs/3016/solutions/observability/synthetics/configure-projects
products:
  - Elastic Cloud Serverless
  - Elastic Observability
applies_to:
  - Elastic Cloud Serverless: Generally available
  - Elastic Stack: Generally available
---

# Configure a Synthetics project
Synthetic tests support the configuration of dynamic parameters that can be used in Synthetics projects. In addition, the Synthetics agent, which is built on top of Playwright, supports configuring browser and context options that are available in Playwright-specific methods, for example, `ignoreHTTPSErrors`, `extraHTTPHeaders`, and `viewport`.
Create a `synthetics.config.js` or `synthetics.config.ts` file in the root of the Synthetics project and specify the options. For example:
<applies-switch>
  <applies-item title="stack:" applies-to="Elastic Stack: Generally available">
    ```ts
    import type { SyntheticsConfig } from '@elastic/synthetics';

    export default env => {
      const config: SyntheticsConfig = {
        params: {
          url: 'https://www.elastic.co',
        },
        playwrightOptions: {
          ignoreHTTPSErrors: false,
        },
        /**
         * Configure global monitor settings
         */
        monitor: {
          schedule: 10,
          locations: [ 'us_east' ],
        },
        /**
         * Project monitors settings
         */
        project: {
          id: 'my-project',
          url: 'https://abc123',
          space: 'custom-space',
        },
      };
      if (env !== 'development') {
        /**
         * Override configuration specific to environment
         * For example, config.params.url = ""
         */
      }
      return config;
    };
    ```
  </applies-item>

  <applies-item title="serverless:" applies-to="Elastic Cloud Serverless: Generally available">
    ```ts
    import type { SyntheticsConfig } from '@elastic/synthetics';

    export default env => {
      const config: SyntheticsConfig = {
        params: {
          url: 'https://www.elastic.co',
        },
        playwrightOptions: {
          ignoreHTTPSErrors: false,
        },
        /**
         * Configure global monitor settings
         */
        monitor: {
          schedule: 10,
          locations: [ 'us_east' ],
        },
        /**
         * Synthetic project monitors settings
         */
        project: {
          id: 'my-synthetics-project',
          url: 'https://abc123',
        },
      };
      if (env !== 'development') {
      /**
       * Override configuration specific to environment
       * For example, config.params.url = ""
       */
      }
      return config;
    };
    ```
  </applies-item>
</applies-switch>

<note>
  `env` in the example above is the environment you are pushing from *not* the environment where monitors will run. In other words, `env` corresponds to the configured `NODE_ENV`.
</note>

The configuration file can either export an object, or a function that when called should return the generated configuration. To know more about configuring the tests based on environments, look at the [dynamic configuration](/elastic/docs-builder/docs/3016/solutions/observability/synthetics/work-with-params-secrets#synthetics-dynamic-configs) documentation.

## `params`

A JSON object that defines any variables your tests require. Read more in [Work with params and secrets](https://www.elastic.co/elastic/docs-builder/docs/3016/solutions/observability/synthetics/work-with-params-secrets).

## `playwrightOptions`

For all available options, refer to the [Playwright documentation](https://playwright.dev/docs/test-configuration).
<note>
  Do not attempt to run in headful mode (using `headless:false`) when running through Elastic’s global managed testing infrastructure or Private Locations as this is not supported.
</note>

Below are details on a few Playwright options that are particularly relevant to Elastic Synthetics including TLS client authentication, timeouts, timezones, and device emulation.

### TLS client authentication

To enable TLS client authentication, set the [`clientCertificates`](https://playwright.dev/docs/api/class-testoptions#test-options-client-certificates) option in the configuration file:
<note>
  Path-based options `{certPath, keyPath, pfxPath}` are only supported on Private Locations, defer to in-memory alternatives `{cert, key, pfx}` when running on locations hosted by Elastic.
</note>

```js
playwrightOptions: {
  clientCertificates: [
    {
      origin: 'https://example.com',
      certPath: './cert.pem',
      keyPath: './key.pem',
      passphrase: 'mysecretpassword',
    },
    {
      origin: 'https://example.com',
      cert: Buffer.from("-----BEGIN CERTIFICATE-----\n..."),
      key: Buffer.from("-----BEGIN RSA PRIVATE KEY-----\n..."),
      passphrase: 'mysecretpassword',
    }
  ],
}
```

<tip>
  When using Synthetics monitor UI, `cert`, `key` and `pfx` can simply be specified using a string literal:
  ```js
  clientCertificates: [
    {
      cert: "-----BEGIN CERTIFICATE-----\n...",
      // Not cert: Buffer.from("-----BEGIN CERTIFICATE-----\n..."),
    }
  ],
  ```
</tip>


### Timeouts

Playwright has two types of timeouts that are used in Elastic Synthetics: [action and navigation timeouts](https://playwright.dev/docs/test-timeouts#action-and-navigation-timeouts).
Elastic Synthetics uses a default action and navigation timeout of 50 seconds. You can override this default using [`actionTimeout`](https://playwright.dev/docs/api/class-testoptions#test-options-action-timeout) and [`navigationTimeout`](https://playwright.dev/docs/api/class-testoptions#test-options-navigation-timeout) in `playwrightOptions`.
<note>
  Browser-based journeys have a timeout limit of 15 minutes.
  When `retry` is enabled (enabled by default), the journey attempts a second run if the first run times out. This allows for a maximum total runtime of 30 minutes: 15 minutes for the first run and up to 15 minutes for the retry.
</note>


### Timezones and locales

The Elastic global managed testing infrastructure does not currently set the timezone. For Private Locations, the monitors will use the timezone of the host machine running the Elastic Agent. This is not always desirable if you want to test how a web application behaves across different timezones. To specify what timezone to use when the monitor runs, you can use `playwrightOptions` on a per monitor or global basis.
To use a timezone and/or locale for all monitors in the Synthetics project, set [`locale` and/or `timezoneId`](https://playwright.dev/docs/emulation#locale%2D%2Dtimezone) in the configuration file:
```js
playwrightOptions: {
  locale: 'en-AU',
  timezoneId: 'Australia/Brisbane',
}
```

To use a timezone and/or locale for a *specific* monitor, add these options to a journey using [`monitor.use`](https://www.elastic.co/elastic/docs-builder/docs/3016/solutions/observability/synthetics/configure-individual-browser-monitors).

### Device emulation

Users can emulate a mobile device using the configuration file. The example configuration below runs tests in "Pixel 5" emulation mode.
```js
import { SyntheticsConfig } from "@elastic/synthetics"
import { devices } from "playwright-chromium"

const config: SyntheticsConfig = {
  playwrightOptions: {
    ...devices['Pixel 5']
  }
}

export default config;
```


## `project`

Information about the Synthetics project.
<definitions>
  <definition term="id (string)">
    A unique id associated with your Synthetics project. It will be used for logically grouping monitors.
    If you used [`init` to create a Synthetics project](/elastic/docs-builder/docs/3016/solutions/observability/synthetics/cli#elastic-synthetics-init-command), this is the `<name-of-synthetics-project>` you specified.
  </definition>
  <definition term="url (string)">
    The URL for the Serverless Observability project or the Kibana URL for the deployment to which you want to upload the monitors.
  </definition>
  <definition term="space (string)">
    For Kibana deployments 9.0 or higher, the identifier of the target [Kibana space](https://www.elastic.co/elastic/docs-builder/docs/3016/deploy-manage/manage-spaces) for the pushed monitors. Spaces help you organize pushed monitors. Pushes to the "default" space if not specified.
  </definition>
</definitions>


## `monitor`

Default values to be applied to *all* monitors when using the [`@elastic/synthetics` `push` command](/elastic/docs-builder/docs/3016/solutions/observability/synthetics/cli#elastic-synthetics-push-command).
<definitions>
  <definition term="id (string)">
    A unique identifier for this monitor.
  </definition>
  <definition term="name (string)">
    A human readable name for the monitor.
  </definition>
  <definition term="tags (Array<string>)">
    A list of tags that will be sent with the monitor event. Tags are displayed in the Synthetics UI and allow you to search monitors by tag.
  </definition>
  <definition term="schedule (number)">
    The interval (in minutes) at which the monitor should run.
  </definition>
  <definition term="enabled (boolean)">
    Enable or disable the monitor from running without deleting and recreating it.
  </definition>
  <definition term="locations (Array<SyntheticsLocationsType>)">
    Where to deploy the monitor. Monitors can be deployed in multiple locations so that you can detect differences in availability and response times across those locations.
    To list available locations you can:
    - Run the [`elastic-synthetics locations` command](/elastic/docs-builder/docs/3016/solutions/observability/synthetics/cli#elastic-synthetics-locations-command).
    - Find `Synthetics` in the [global search field](https://www.elastic.co/elastic/docs-builder/docs/3016/explore-analyze/find-and-organize/find-apps-and-objects) and click **Create monitor**. Locations will be listed in *Locations*.
  </definition>
  <definition term="privateLocations (Array<string>)">
    The [Private Locations](https://www.elastic.co/elastic/docs-builder/docs/3016/solutions/observability/synthetics/monitor-resources-on-private-networks) to which the monitors will be deployed. These Private Locations refer to locations hosted and managed by you, whereas `locations` are hosted by Elastic. You can specify a Private Location using the location’s name.
    To list available Private Locations you can:
    - Run the [`elastic-synthetics locations` command](/elastic/docs-builder/docs/3016/solutions/observability/synthetics/cli#elastic-synthetics-locations-command) with the URL for the Observability project or the Kibana URL for the deployment from which to fetch available locations.
    - Find `Synthetics` in the [global search field](https://www.elastic.co/elastic/docs-builder/docs/3016/explore-analyze/find-and-organize/find-apps-and-objects) and click **Create monitor**. Private Locations will be listed in *Locations*.
  </definition>
  <definition term="Elastic Stack: Generally available since 9.1 spaces (Array<string>)">
    The [Kibana spaces](https://www.elastic.co/elastic/docs-builder/docs/3016/deploy-manage/manage-spaces) in which the monitor will be visible. Monitors can be visible in multiple spaces simultaneously. Use `'*'` to make the monitor visible in all spaces. The project's default space is always included.
  </definition>
  <definition term="throttling (boolean | ThrottlingOptions)">
    Control the monitor’s download speeds, upload speeds, and latency to simulate your application’s behavior on slower or laggier networks. Set to `false` to deactivate throttling altogether.
  </definition>
  <definition term="screenshot (ScreenshotOptions)">
    Control whether or not to capture screenshots. Options include `'on'`, `'off'`, or `'only-on-failure'`.
  </definition>
  <definition term="alert.status.enabled (boolean)">
    Enable or disable monitor status alerts. Read more about alerts in [Alerting](/elastic/docs-builder/docs/3016/solutions/observability/synthetics/configure-settings#synthetics-settings-alerting).
  </definition>
  <definition term="retestOnFailure (boolean)">
    Enable or disable retesting when a monitor fails. Default is `true`.
    By default, monitors are automatically retested if the monitor goes from "up" to "down". If the result of the retest is also "down", an error will be created, and if configured, an alert sent. Then the monitor will resume running according to the defined schedule.
    Using `retestOnFailure` can reduce noise related to transient problems.
  </definition>
  <definition term="fields (object)">
    A list of key-value pairs that will be sent with each monitor event. The `fields` are appended to Elasticsearch documents as `labels`, and those labels are displayed in Kibana in the *Monitor details* panel in the [individual monitor’s *Overview* tab](/elastic/docs-builder/docs/3016/solutions/observability/synthetics/analyze-data#synthetics-analyze-individual-monitors-overview).
    For example:
    ```js
    fields: {
      foo: 'bar',
      team: 'synthetics',
    }
    ```
  </definition>
  <definition term="namespace (string)">
    Assign the monitor to a specific datastream namespace. Defaults to Kibana's namespace.
    For example:
    ```js
    namespace: 'custom-namespace'
    ```
  </definition>
</definitions>

For information on configuring monitors individually, refer to:
- [Configure individual browser monitors](https://www.elastic.co/elastic/docs-builder/docs/3016/solutions/observability/synthetics/configure-individual-browser-monitors) for browser monitors
- [Configure lightweight monitors](https://www.elastic.co/elastic/docs-builder/docs/3016/solutions/observability/synthetics/configure-lightweight-monitors) for lightweight monitors

<definitions>
  <definition term="maintenanceWindows (Array<string>)">
    A list of maintenance window IDs used to associate this monitor with one or more [maintenance windows](https://www.elastic.co/elastic/docs-builder/docs/3016/explore-analyze/alerting/alerts/maintenance-windows).
  </definition>
</definitions>


## `proxy`

<definitions>
  <definition term="uri (string)">
    The Proxy URL to be used when connecting to the deployment or Observability Serverless project.
  </definition>
  <definition term="token (string)">
    (Optional) The authentication token to be used when connecting to the proxy URL. Based on auth header format `Basic Asaaas==`
  </definition>
  <definition term="ca (string | Buffer)">
    (Optional) Override the trusted CA certificates for the proxy connection.
  </definition>
  <definition term="noVerify (boolean)">
    (Optional) Disable TLS verification for the proxy connection.
  </definition>
</definitions>