Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 27, 2021 01:20 pm GMT

Monitoring your Nestjs application using OpenTelemetry

Nestjs is a Nodejs framework for building scalable server-side applications with typescript. It makes use of frameworks like Express and Fastify to enable rapid development. It has gained wide popularity in recent times, and many applications are making use of the Nestjs framework.

Monitoring your Nestjs application is critical for performance management. But setting up monitoring for Nestjs applications can get cumbersome requiring multiple libraries and patterns. That's where Opentelemetry comes in.

OpenTelemetry is the leading open-source standard for instrumenting your code to generate telemetry data that can be a one-stop solution for monitoring Nestjs applications.

OpenTelemetry is a set of tools, APIs, and SDKs used to instrument applications to create and manage telemetry data(Logs, metrics, and traces). It aims to make telemetry data(logs, metrics, and traces) a built-in feature of cloud-native software applications.

One of the biggest advantages of using OpenTelemetry is that it is vendor-agnostic. It can export data in multiple formats, which you can send to a backend of your choice.

In this article, we will use SigNoz as a backend. SigNoz is an open-source APM tool that can be used for both metrics and distributed tracing.

Let's get started and see how to use OpenTelemetry for a Nestjs application.

Running a Nestjs application with OpenTelemetry

First, you need to install SigNoz. Data collected by OpenTelemetry will be sent to SigNoz for storage and visualization.

Installing SigNoz

You can get started with SigNoz using just three commands at your terminal.

git clone https://github.com/SigNoz/signoz.gitcd signoz/deploy/./install.sh

For detailed instructions, you can visit our documentation.

Deployment Docs

If you have installed SigNoz on your local host, you can access the UI at:http://localhost:3000

The application list shown in the dashboard is from a sample app called HOT R.O.D that comes bundled with the SigNoz installation package.

SigNoz dashboard showing application listSigNoz Dashboard

Instrumenting a sample Nestjs application with OpenTelemetry

For instrumenting a Nestjs application with OpenTelemetry, you need to install the required OpenTelemetry packages first. Steps involved in instrumenting a Nestjs application with OpenTelemetry are as follows:

Install below dependencies

npm install --save @opentelemetry/apinpm install --save @opentelemetry/sdk-nodenpm install --save @opentelemetry/auto-instrumentations-nodenpm install --save @opentelemetry/[email protected].0

Create a tracer.ts file

The IP of SIgNoz will be localhost if you are running SigNoz on local.

// tracing.ts'use strict'const opentelemetry = require('@opentelemetry/sdk-node');const { getNodeAutoInstrumentations } = require('@opentelemetry/auto-instrumentations-node');const { OTLPTraceExporter } = require('@opentelemetry/exporter-trace-otlp-proto');const { Resource } = require('@opentelemetry/resources');const { SemanticResourceAttributes } = require('@opentelemetry/semantic-conventions');// configure the SDK to export telemetry data to the console// enable all auto-instrumentations from the meta packageconst exporterOptions = {  url: 'http://<IP of SigNoz>:55681/v1/trace', }const traceExporter = new OTLPTraceExporter(exporterOptions);const sdk = new opentelemetry.NodeSDK({  resource: new Resource({    [SemanticResourceAttributes.SERVICE_NAME]: 'sampleNestJsApp'  }),  traceExporter,  instrumentations: [getNodeAutoInstrumentations()]});// initialize the SDK and register with the OpenTelemetry API// this enables the API to record telemetrysdk.start()  .then(() => console.log('Tracing initialized'))  .catch((error) => console.log('Error initializing tracing', error));// gracefully shut down the SDK on process exitprocess.on('SIGTERM', () => {  sdk.shutdown()    .then(() => console.log('Tracing terminated'))    .catch((error) => console.log('Error terminating tracing', error))    .finally(() => process.exit(0));});module.exports = sdk 

Import the tracer module where your app starts

On main.ts file or file where your app starts import tracer using below command:

const tracer = require('./tracer')

Start the tracer

await tracer.start();

You can now run your Nestjs application. The data captured with OpenTelemetry from your application should start showing on the SigNoz dashboard.

You can check out a sample Nestjs application already instrumented with OpenTelemetry here:

Sample Nestjs Application

If you run this app, you can find a SampleNestJsApp in the list of applications monitored with SigNoz.

Sample Nestjs application in the list of applications monitored by SigNozSample Nestjs application in the list of applications monitored by SigNoz

Open-source tool to visualize telemetry data

SigNoz makes it easy to visualize metrics and traces captured through OpenTelemetry instrumentation.

SigNoz comes with out of box RED metrics charts and visualization. RED metrics stands for:

  • Rate of requests
  • Error rate of requests
  • Duration taken by requests

SigNoz charts and metricsMeasure things like application latency, requests per sec, error percentage and see your top endpoints with SigNoz.

You can then choose a particular timestamp where latency is high to drill down to traces around that timestamp.

List of traces on SigNoz dashboardView of traces at a particular timestamp

You can use flamegraphs to exactly identify the issue causing the latency.

Flamegraphs used to visualize spans of distributed tracing in SigNoz UIView of traces at a particular timestamp

You can also build custom metrics dashboard for your infrastructure.

Custom metrics dashboardYou can also build a custom metrics dashboard for your infrastructure

Conclusion

OpenTelemetry makes it very convenient to instrument your Nestjs application. You can then use an open-source APM tool like SigNoz to analyze the performance of your app. As SigNoz offers a full-stack observability tool, you don't have to use multiple tools for your monitoring needs.

You can try out SigNoz by visiting its GitHub repo

SigNoz GitHub repo

If you have any questions or need any help in setting things up, join our slack community and ping us in #help channel.

SigNoz Slack community

If you want to read more about SigNoz

Golang Aplication Monitoring with OpenTelemetry and SigNoz

OpenTelemetry collector - complete guide


Original Link: https://dev.to/signoz/monitoring-your-nestjs-application-using-opentelemetry-4ic0

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To