Skip to main content

Node.js and AWS X-Ray (Node.js SDK)

Tracetest is a testing tool based on OpenTelemetry that allows you to test your distributed application. It allows you to use data from distributed traces generated by OpenTelemetry to validate and assert if your application has the desired behavior defined by your test definitions.

AWS X-Ray provides a complete view of requests as they travel through your application and filters visual data across payloads, functions, traces, services, APIs and more with no-code and low-code motions.

Node.js App with AWS X-Ray (Node.js SDK) and Tracetest​

This is a simple quick start guide on how to configure a Node.js app to use instrumentation with traces and Tracetest for enhancing your E2E and integration tests with trace-based testing. The infrastructure will use AWS X-Ray as the trace data store and a Node.js app to generate the telemetry data.

Prerequisites​

Tracetest Account:

AWS Account:

Docker: Have Docker and Docker Compose installed on your machine.

Run This Quckstart Example​

The example below is provided as part of the Tracetest project. You can download and run the example by following these steps:

Clone the Tracetest project and go to the AWS X-Ray Node.js Quickstart:

git clone https://github.com/kubeshop/tracetest
cd tracetest/examples/tracetest-amazon-x-ray

Follow these instructions to run the quick start:

  1. Copy the .env.template file to .env.
  2. Log into the Tracetest app.
  3. Fill out the token and API key details by editing your .env file. You can find these values in the Settings area for your environment.
  4. Fill out the AWS credentials in the .env file. You can create credentials by following this guide.
  5. Run docker compose -f ./docker-compose.agent.yaml up -d.
  6. This example is configured to use the AWS X-Ray Tracing Backend. Ensure the environment you're using to run this example is configured to use the AWS X-Ray Tracing Backend by clicking on Settings, Tracing Backend, AWS X-Ray, Save. Or, use the CLI as explained below.
  7. Run tests from the Tracetest Web UI by accessing the app with the URL http://app:3000/http-request/.

Follow along with the sections below for an in detail breakdown of what the example you just ran did and how it works.

Project Structure​

The project contains Tracetest Agent, and a Node.js app.

The docker-compose.agent.yaml file in the root directory of the quick start runs the Node.js app, X-Ray Daemon, and the Tracetest Agent setup.

Configuring the Node.js App​

The Node.js app is a simple Express app, contained in the index.js file.

Configure the .env like shown below.

AWS_ACCESS_KEY_ID="<YOUR_AWS_ACCESS_KEY_ID>"
AWS_SECRET_ACCESS_KEY="<YOUR_AWS_SECRET_ACCESS_KEY>"
AWS_SESSION_TOKEN="<YOURAWS_SESSION_TOKEN>"
AWS_REGION="<YOUR_AWS_REGION>"
TRACETEST_API_KEY="<YOUR_TRACETEST_API_KEY>"
TRACETEST_API_TOKEN="<YOUR_TRACETEST_TOKEN>"

The X-Ray tracing is contained in the index.js file. Traces will be sent to AWS X-Ray via the X-Ray Daemon.

Configuring AWS X-Ray​

Configure AWS X-Ray as a Tracing Backend in Tracetest.

Get temporary credentials.

aws sts get-session-token
Output
{
"Credentials": {
"AccessKeyId": "<yourkeyid>",
"SecretAccessKey": "<youraccesskey>",
"SessionToken": "<yoursessiontoken>",
"Expiration": "2024-05-23T21:01:38+00:00"
}
}

Edit the tracetest-tracing-backend.yaml.

tracetest-tracing-backend.yaml
---
type: DataStore
spec:
name: awsxray
type: awsxray
awsxray:
accessKeyId: <your-accessKeyId>
secretAccessKey: <your-secretAccessKey>
sessionToken: <your-session-token>
region: "<your-region>"
tracetest config -t <YOUR_API_TOKEN>
tracetest apply datastore -f ./tracetest-tracing-backend.yaml

Run the Node.js App, X-Ray Daemon, and Tracetest Agent with Docker Compose​

The docker-compose.agent.yaml file and Dockerfile in the root directory contain the Node.js app.

The docker-compose.agent.yaml file also contains the Tracetest Agent and X-Ray Daemon.

To start it, run this command:

docker compose -f ./docker-compose.agent.yaml up -d

This will start the Node.js app and Tracetest Agent.

Run Tracetest Tests​

  1. Open Tracetest.
  2. Configure AWS X-Ray as a tracing backend if you have not already as explained above.
  3. Start creating tests! Make sure to use the http://app:3000/http-request/ URL in your test creation.
  4. To trigger tests in the CLI, first install the CLI, configure it, and run a test. From the root of the quick start directory, run:
tracetest configure -t <YOUR_API_TOKEN>
tracetest run test -f ./test-api.yaml

Learn More​

Please visit our examples in GitHub and join our Slack Community for more info!