Deploy an OpenTelemetry Collector and Backend on Railway

What is OpenTelemetry?

OpenTelemetry is an Observability framework and toolkit designed to create and manage telemetry data such as traces, metrics, and logs. Crucially, OpenTelemetry is vendor- and tool-agnostic, meaning that it can be used with a broad variety of Observability backends, including open source tools like Jaeger and Prometheus, as well as commercial offerings.

About this Tutorial

There is an overwhelming number of options for applying OpenTelemetry in your software stack. This tutorial uses the libraries and tools endorsed and/or maintained by the OpenTelemetry community.

OpenTelemetry is commonly referred to simply as "Otel". You will see both terms used throughout this tutorial.

Objectives

In this tutorial you will learn how to -

  • Deploy the OpenTelemetry Collector, listening for traces, metrics, and logs.
  • Deploy a backend stack (Jaeger, Zipkin, and Prometheus) to receive the traces, metrics, and logs from the collector
  • Build and instrument an Express application to send data to the collector.

Prerequisites

To be successful using this tutorial, you should already have -

OpenTelemetry Collector Template and Demo

If you are looking for a quicker way to get started, you can deploy the collector and backend stack from a template by clicking the button below.

Deploy on Railway

We also have a live demo of the project you will build in this tutorial here, and you can access the code repository here in Github. You can find some example apps, including the one we will build in this tutorial, in the exampleApps folder.

Let's get started!

1. Deploy the Backend Services

First, we will deploy the backend services:

  • Jaeger - an open-source, distributed tracing system that will receive telemetry data from the collector
  • Zipkin - also an open-source, distributed tracing system that will receive telemetry data from the collector
  • Prometheus - an open-souce, systems monitoring and alerting toolkit that will receive telemetry data from the collector

Jaeger and Zipkin offer similar functionality, and it is not necessary to run both. The intent is to give you different examples of backend services.

Each of the following steps should be completed in the same Railway project.

Add Jaeger Service

  • Add a New service by clicking + New
  • Select Docker Image as the Source
  • Add jaegertracing/all-in-one as the image name and hit Enter
  • Add the following variable to the service This is the port that serves the UI. Setting this variable allows you to access the Jaeger UI from your browser
  • In the Settings tab, rename the service Jaeger
  • Click Deploy to apply and deploy the service
  • In the Settings tab, under Networking, click Generate Domain

You should be able to acess the Jaeger UI by clicking on the service domain.

Add Zipkin Service

  • Add a New service by clicking + New
  • Select Docker Image as the Source
  • Add openzipkin/zipkin as the image name and hit Enter
  • Add the following variable to the service This is the port that serves the UI. Setting this variable allows you to access the Zipkin UI from your browser
  • In the Settings tab, rename the service Zipkin
  • Click Deploy to apply and deploy the service
  • In the Settings tab, under Networking, click Generate Domain

You should be able to acess the Zipkin UI by clicking on the service domain.

Add Prometheus Service

  • Add a New service by clicking + New
  • Select Template as the Source
  • Type Prometheus and select the Prometheus template (be sure to select this one)
  • Click Deploy to apply and deploy the service

The template deploys with the proper UI port already configured to enable accessing the Prometheus UI from your browser

You should be able to acess the Prometheus UI by clicking on the service domain.

2. Deploy the OpenTelemetry Collector

The OpenTelemetry Collector is a vendor-agnostic service that receives, processes, and exports telemetry data.

It is not strictly necessary to run a collector when implementing OpenTelemetry, but it is recommended by the OpenTelemetry community. More information on the subject can be found here.

Fork the Open Telemetry Collector repository

Add the Open Telemetry Service

In the Railway project -

  • Add a New service by clicking + New
  • Select GitHub Repo as the Source
  • Select the opentelemetry-collector-stack repository (if you renamed the repo in the previous step, yours will be named differently)
  • Add the following variable to the service This is the port that serves the collector's debugging UI. Setting this variable allows you to access the UI from your browser
  • In the Settings tab, rename the service OpenTelemetry Collector
  • Click Deploy to apply and deploy the service
  • In the Settings tab, under Networking, click Generate Domain

The Collector's debugging UI is enabled by default and accessible from the browser. This is controlled by the inclusion of the zpages extension in the collector's configuration yaml. You can read more about the UI and the available routes, in the collector's source repo.


Checkpoint

Congrats! You should now have a working OpenTelemetry Collector along with a backend stack to which the collector will forward data. Your project in Railway should look something like this -

Screenshot of Project Canvas

Be sure to familiarize yourself with the Otel Collector's configuration file. The documentation on the format and structure of the file can be found here in Otel's official docs.


3. Build and Instrument an Express App

Now that the collector stack is up, let's build and instrument an application!

Note: The full source code for the express app that we will build is available in the Open Telemetry Collector repository that you forked in the previous steps.

Create and initialize the project

From your local machine -

  • Create a folder for your project called otel-example-app

  • Use npm (or your preferred package manager) to install the required dependencies -

Build the App

  • In the otel-example-app folder, create an app.js file and add the following code -

  • Create the dice.js file in the project folder and add the following code -

    We encourage you to refer to the OpenTelemetry documentation to gain a richer understanding of this code. The code you see above can be found here.

Build the Instrumentation SDK

  • In the otel-example-app folder, create an instrumentation.js file and add the following code -

    This code will wrap your application code and capture the telemetry data. In the steps that follow, you will see how to start your application in Railway with a custom start command that utilizes this SDK.

    We encourage you to refer to the OpenTelemetry documentation to gain a richer understanding of this code. The code you see above can be found here.

4. Deploy the Express App

Create an Empty Service and Configure the Environment

In the same Railway project -

  • Add a New service by clicking + New
  • Select Empty Service
  • Add the following variable to the service This is used by the Express app to connect to the OpenTelemetry Collector
  • In the service Settings, add the following Custom Start Command: This wraps the Express app on startup with the instrumentation SDK you created above.
  • In the service Settings, rename the service to Express App
  • Click Deploy to apply and create the empty service
  • In the Settings tab, under Networking, click Generate Domain

Deploy from the Railway CLI

This step assumes you have the latest version of the Railway CLI installed.

On your local machine -

  • Open your terminal and change directory to the otel-example-app folder

  • Link to the Railway project and service by running the following command -

    Follow the prompts selecting the correct project name and environment (click here for a reference), and choose the Express App service.

  • Deploy the Express App by running the following command -

5. Test and Confirm

Test that everything is working by generating some traffic to your Express App. There is a single route, /rolldice, that takes a rolls query string -

  • <YOUR_SERVICE_DOMAIN>/rolldice?rolls=10

Generate some traffic to this route, updating the number of rolls to different numbers, and verify that you see traces and spans in Jaeger and Zipkin.

Screenshot of Jaeger UI

Jaeger

Screenshot of Zipkin Ui

Zipkin

Bonus - NextJS

This tutorial was born out of an exploration into instrumenting some of our applications with NextJS's Otel library. This means that you can use this Otel collector stack to capture telemetry data from your NextJS app!

Send Telemetry Data from NextJS

Assuming you've followed the docs mentioned above to instrument your NextJS app, you can configure it to send requests to your collector in Railway by setting the required environment variable in the NextJS application.

If your Next App is deployed in the same Railway project as the collector, you can use the private network -

If your Next App is deployed in another Railway project, or outside of Railway entirely, you can use the public network -

  • Note: If you use the public domain, you will need to update the PORT environment variable in your Otel Collector service to PORT=4318

Debugging in NextJS

Another helpful environment variable, specific to Node, is the debug directive -

Helpful Resources

The OpenTelemetry Documentation is complete and easy to follow. We encourage you to spend time getting familiar with the docs, but here are some sections that we found especially helpful -

Conclusion

Congratulations! You have deployed an OpenTelemetry Collector and a Node Express app that sends data to the collector which then sends it to Jaeger, Prometheus, and Zipkin.

This is a very basic implementation, and you should refer to the OpenTelemetry documentation for information on how to customize your implementation.


Edit this file on GitHub