Node.js
Node.js APM - Setup & Installation Docs | Middleware
Traces | Metrics | App Logs | Custom Logs | Profiling |
---|---|---|---|---|
✅ | ✖️ | ✖️ | ✅ | ✅ |
This guide walks you through setting up Application Performance Monitoring (APM) on a Node.js application. These instructions can also be found on the Installation page in your Middleware Account. View example code here.
Prerequisites
Infra Agent
Infrastructure Agent (Infra Agent). To install the Infra Agent, see our Installation Guide.
Node.js Version
Node.js version 18.17.1
or above. Check your Node.js version with the following command:
Python Version
Python version 3.8
or above. Check your Python version with the following command:
Install
Step 1: Install Node.js
APM Package
Run the following command in your terminal:
Step 2: Initialize Tracker
Add the following lines to the beginning of your application code base. The access token is your account key, which can be found on the Installation page.
Step 3: Container Variables
Docker
Applications running in a container require an additional environment variable. If your application is not running in a container, move to Step 4.
For Docker containers, add the following environment variable to your application.
DOCKER_BRIDGE_GATEWAY_ADDRESS
is the IP address of the gateway between the Docker host and bridge network. This is 172.17.0.1
by default.
Learn more about Docker bridge networking here Kubernetes
Then add the following environment variable to your application deployment YAML file.
Step 4: Capture Application Data
Traces
Distributed tracing is automatically enabled upon completion of Step 2.
Span Attributes
For any automatically instrumented endpoints, add the following code snippet:
Custom Logs
To ingest custom logs into Middleware, utilize the following functions inside your logging method based on desired log severity levels.
To add stack traces along with the error log, use the following error tracking function.
Custom Metrics and Spans
Create custom instruments and spans by exposing the meter and tracer with the following pattern:
Profiling
Application Profiling is auto-configured upon completing Step 2.
Stack Traces
Use the errorRecord
method to record a stack trace when an error occurs. See an example of this method below.
NestJS Framework [Optional]
Step 1: Install Node Typescript APM
Step 2: Import Package in main.ts
Import the following package in your main.ts
file:
Step 3: Capture Application Data
The following is a sample function that fetches a user’s email address and throws an error if the user is not found, while also logging the error using a third-party logging function.
Use the below pattern for any other available methods that are mentioned in Step 4.
Continuous Profiling
Continuous profiling captures real-time performance insights from your application to enable rapid identification of resource allocation, bottlenecks, and more. Navigate to the Continuous Profiling section to learn more about using Continuous Profiling with the Node.js APM.
Troubleshooting
node-gyp
Failing/Missing Dependencies
If node-gyp
fails to build or your infrastructure is missing dependencies, run the following command:
Running Apps on Docker
If you are unable to run your Node.js app on Docker, open port 9319
locally to enable proper firewall configurations.