﻿---
title: Create monitors with a Synthetics project
description: A Synthetics project is the most powerful and sophisticated way to configure synthetic monitors. A Synthetics project lets you define your infrastructure...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/create-monitors-with-projects
products:
  - Elastic Cloud Serverless
  - Elastic Observability
applies_to:
  - Elastic Cloud Serverless: Generally available
  - Elastic Stack: Generally available
---

# Create monitors with a Synthetics project
A Synthetics project is the most powerful and sophisticated way to configure synthetic monitors. A Synthetics project lets you define your infrastructure as code, more commonly known as IaaC or Git-ops. With monitors created and managed in Synthetics projects, you organize your YAML configuration and JavaScript- or TypeScript-defined monitors on the filesystem, use Git for version control, and deploy via a CLI tool, usually executed on a CI/CD platform.
![Diagram showing which pieces of software are used to configure monitors](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/images/observability-synthetics-get-started-projects.png)

This is one of [two approaches](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/get-started) you can use to set up a synthetic monitor.

## Prerequisites

For **serverless Observability projects**, you must be signed in as a user with [Editor](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/grant-access-to-secured-resources) access.
For **Elastic Stack deployments**, you must be signed into Kibana as a user with at least [synthetics write permissions](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/writer-role), and Monitor Management must be enabled by an administrator as described in [Setup role](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/setup-role).
Working with a Synthetics project requires working with the Elastic Synthetics CLI tool, which can be invoked via the `npx @elastic/synthetics` command. Before getting started you’ll need to:
1. Install [Node.js](https://nodejs.dev/en/)
2. Install the package:
   ```sh
   npm install -g @elastic/synthetics
   ```
3. Confirm your system is setup correctly:
   ```sh
   npx @elastic/synthetics -h
   ```

You should also decide where you want to run the monitors before getting started. You can run monitors in Synthetics projects on one or both of the following:
- **Elastic’s global managed testing infrastructure**: With Elastic’s global managed testing infrastructure, you can create and run monitors in multiple locations without having to manage your own infrastructure. Elastic takes care of software updates and capacity planning for you.
- **Private Locations**: Private Locations allow you to run monitors from your own premises. To use Private Locations you must create a Private Location before continuing. For step-by-step instructions, refer to [Monitor resources on private networks](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/monitor-resources-on-private-networks).

<note>
  If you are setting up Synthetics for a deployment configured with [network security](https://www.elastic.co/elastic/docs-builder/docs/3028/deploy-manage/security/network-security), connections into Elasticsearch are restricted and results will not be able to be written back into Elasticsearch unless granted. For more details, refer to [Use Synthetics with network security](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/network-security).
</note>


## Create a Synthetics project

Start by creating your first Synthetics project. Run the command below to create a new Synthetics project named `synthetic-project-test` in the current directory.
```sh
npx @elastic/synthetics init synthetic-project-test
```

Then, follow the prompts on screen to set up the correct default variables for your Synthetics project. When complete, set the `SYNTHETICS_API_KEY` environment variable in your terminal, which is used to connect to your Observability environment:
1. Generate an API key:
   1. Go to the **Synthetics** app in Kibana.
2. Click **Settings**.
3. Switch to the **Project API Keys** tab.
4. Click **Generate Project API key**.
   <important>
   To generate a Project API key, you must be logged in as a user with [Editor](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/grant-access-to-secured-resources) access.
   </important>
   ![Project API Keys tab in Synthetics settings](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/images/serverless-synthetics-monitor-management-api-key.png)
   <note>
   To use an API key to push to Elastic’s global managed testing infrastructure, the *Elastic managed locations enabled* toggle must be on when generating the API key. If the *Elastic managed locations enabled* toggle is disabled, an administrator has restricted access to Elastic’s global managed testing infrastructure.
   </note>
2. Set the `SYNTHETICS_API_KEY` environment variable in your terminal. You will most likely want to set this permanently. This is done differently in [Powershell](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_environment_variables?view=powershell-7.2#saving-changes-to-environment-variables) and [Bash](https://unix.stackexchange.com/a/117470).

Then, take a look at key files and directories inside your Synthetics project:
- `journeys` is where you’ll add `.ts` and `.js` files defining your browser monitors. When you create a new Synthetics project, this directory will contain files defining sample monitors.
- `lightweight` is where you’ll add `.yaml` files defining your lightweight monitors. When you create a new Synthetics project, this directory will contain a file defining sample monitors.
- `synthetics.config.ts` contains settings for your Synthetics project. When you create a new Synthetics project, it will contain some basic configuration options that you can customize later.
  <note>
  The `synthetics.config.ts` in the sample Synthetics project uses a location on Elastic’s global managed testing infrastructure. Administrators can restrict access to Elastic’s global managed testing infrastructure. When you attempt to [`push` the sample monitors](#synthetics-get-started-project-test-and-connect-to-your-observability-project), if you see an error stating that you don’t have permission to use Elastic managed global locations, refer to the [troubleshooting guide](/elastic/docs-builder/docs/3028/troubleshoot/observability/troubleshooting-synthetics#synthetics-troubleshooting-no-locations) for guidance.
  </note>
- `package.json` contains NPM settings for your Synthetics project. Learn more in the [NPM documentation](https://docs.npmjs.com/about-packages-and-modules).
- `.github` contains sample workflow files to use with GitHub Actions.


## Examine sample monitors

Inside the `lightweight` directory you’ll find sample lightweight monitors. Here’s an example of a YAML file defining a lightweight monitor:
```yaml
# lightweight.yml
heartbeat.monitors:
- type: http
  name: Todos Lightweight
  id: todos-lightweight
  urls: "https://elastic.github.io/synthetics-demo/"
  schedule: '@every 1m'
```

For more details on lightweight monitor configuration options, refer to [Configure lightweight monitors](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/configure-lightweight-monitors).
Inside the `journeys` directory you’ll find sample browser monitors. Here’s an example of a TypeScript file defining a browser monitor:
```ts
// example.journey.ts
import { journey, step, monitor, expect } from '@elastic/synthetics';
journey('My Example Journey', ({ page, params }) => {
  // Only relevant for the push command to create
  // monitors in Kibana or your serverless Observability project
  monitor.use({
    id: 'example-monitor',
    schedule: 10,
  });
  step('launch application', async () => {
    await page.goto(params.url);
  });
  step('assert title', async () => {
    const header = await page.locator('h1');
    expect(await header.textContent()).toBe('todos');
  });
});
```

For more details on writing journeys and configuring browser monitors, refer to [Scripting browser monitors](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/scripting-browser-monitors).

## Test and connect to your Observability project or Elastic Stack deployment

<applies-switch>
  <applies-item title="stack:" applies-to="Elastic Stack: Generally available">
    While inside the project directory you can do two things with the `npx @elastic/synthetics` command:
    - Test browser-based monitors locally. To run all journeys defined in `.ts` and `.js` files:
      ```sh
      npx @elastic/synthetics journeys
      ```
    - Push all monitor configurations to an Elastic deployment. Run the following command from inside your project:
      ```sh
      npx @elastic/synthetics push --auth $SYNTHETICS_API_KEY --url <kibana-url>
      ```
    One monitor will appear in the Synthetics app for each journey or lightweight monitor, and you’ll manage all monitors from your local environment. For more details on using the `push` command, refer to [`@elastic/synthetics push`](/elastic/docs-builder/docs/3028/solutions/observability/synthetics/cli#elastic-synthetics-push-command).
    <note>
      If you’ve [added a Private Location](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/monitor-resources-on-private-networks), you can `push` to that Private Location.To list available Private Locations, run the [`elastic-synthetics locations` command](/elastic/docs-builder/docs/3028/solutions/observability/synthetics/cli#elastic-synthetics-locations-command) with the Kibana URL for the deployment from which to fetch available locations.
    </note>
  </applies-item>

  <applies-item title="serverless:" applies-to="Elastic Cloud Serverless: Generally available">
    While inside the Synthetics project directory you can do two things with the `npx @elastic/synthetics` command:
    - Test browser-based monitors locally. To run all journeys defined in `.ts` and `.js` files:
      ```sh
      npx @elastic/synthetics journeys
      ```
    - Push all monitor configurations to an Observability project. Run the following command from inside your Synthetics project directory:
      ```sh
      npx @elastic/synthetics push --auth $SYNTHETICS_API_KEY --url <observability-project-url>
      ```
    One monitor will appear in the Synthetics UI for each journey or lightweight monitor, and you’ll manage all monitors from your local environment. For more details on using the `push` command, refer to [`@elastic/synthetics push`](/elastic/docs-builder/docs/3028/solutions/observability/synthetics/cli#elastic-synthetics-push-command).
    <note>
      If you’ve [added a Private Location](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/monitor-resources-on-private-networks), you can `push` to that Private Location.To list available Private Locations, run the [`elastic-synthetics locations` command](/elastic/docs-builder/docs/3028/solutions/observability/synthetics/cli#elastic-synthetics-locations-command) with the URL for the Observability project from which to fetch available locations.
    </note>
  </applies-item>
</applies-switch>


## View in the Synthetics UI

Then, go to **Synthetics** in your serverless Observability project or in Kibana. You should see your newly pushed monitors running. You can also go to the **Management** tab to see the monitors' configuration settings.
<note>
  When a monitor is created or updated, the first run might not occur immediately, but the time it takes for the first run to occur will be less than the monitor’s configured frequency. For example, if you create a monitor and configure it to run every 10 minutes, the first run will occur within 10 minutes of being created. After the first run, the monitor will begin running regularly based on the configured frequency. You can run a manual test if you want to see the results more quickly.
</note>


## Next steps

Learn more about:
- [Configuring lightweight monitors](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/configure-lightweight-monitors)
- [Configuring browser monitors](https://www.elastic.co/elastic/docs-builder/docs/3028/solutions/observability/synthetics/write-synthetic-test)
- [Implementing best practices for working with Synthetics projects](/elastic/docs-builder/docs/3028/solutions/observability/synthetics/manage-monitors#synthetics-projects-best-practices)