Skip to main content

Node.js and Azure Application Insights (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.

Azure Application Insights is an extension of Azure Monitor and provides application performance monitoring (APM) features. APM tools are useful to monitor applications from development, through test, and into production in the following ways:

  • Proactively understand how an application is performing.
  • Reactively review application execution data to determine the cause of an incident.

Node.js App with Azure Application Insights 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 Azure App Insights as the trace data store and a Node.js app to generate the telemetry data.

Prerequisites​

Tracetest Account:

Azure 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 Azure Node.js Quickstart:

git clone https://github.com/kubeshop/tracetest
cd tracetest/examples/tracetest-azure-app-insights

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. Run docker compose up -d.
  5. Fill out the resourceArmId: <your-arm-id> and accessToken: <your-access-token> in the tracetest-tracing-backend.yaml.
  6. This example is configured to use the Azure Application Insights Tracing Backend. Ensure the environment you're using to run this example is configured to use the Application Insights Tracing Backend by clicking on Settings, Tracing Backend, Azure Application Insights, 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:8080/.

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.yaml file in the root directory of the quick start runs the Node.js app, Elasticsearch, Elastic APM server, OpenTelemetry Collector, and the Tracetest Agent setup.

Configuring the Node.js App​

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

Configure the .env like shown below.

CONNECTION_STRING="<YOUR_APP_INSIGHTS_CONNECTION_STRING>"
TRACETEST_API_KEY="<YOUR_TRACETEST_API_KEY>"

The OpenTelemetry tracing is contained in the tracing.js file. Traces will be sent to Azure Application Insights.

The tracing.js file will send traces to the Azure Application Insights endpoint.

Enabling the tracer is done by preloading the trace file. As seen in the package.json.

"scripts": {
"start": "node -r ./tracing.js app.js"
},

Configuring Azure Application Insights​

Create an Application Insights resource in your Azure account. The Resource ID is the resourceArmId you need.

Get the accessToken by following this guide. Or if you are running Tracetest from a authorized container, you can use the default Active Directory Authentication.

Configure Azure Application Insights as a Tracing Backend in Tracetest:

tracetest-tracing-backend.yaml
---
type: DataStore
spec:
name: azureappinsights
type: azureappinsights
azureappinsights:
connectionType: direct
resourceArmId: <your-arm-id>
accessToken: <your-access-token>
useAzureActiveDirectoryAuth: false
tracetest config -t <YOUR_API_TOKEN>
tracetest apply datastore -f ./tracetest-tracing-backend.yaml

Run the Node.js App and OpenTelemetry Collector with Docker Compose​

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

The docker-compose.yaml file also contains the Tracetest Agent.

To start it, run this command:

docker compose up -d

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

Run Tracetest Tests​

  1. Open Tracetest.
  2. Configure Azure Application Insights as a tracing backend if you have not already as explained above.
  3. Start creating tests! Make sure to use the http://app:8080/ 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!