Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 2.53 KB

README.md

File metadata and controls

56 lines (41 loc) · 2.53 KB

OpenTelemetry

This repository contains the necessary components to add the OpenTelemetry SDK to WRLD services and applications, allowing us to generate traces & metrics, and the OpenTelemetry Collector, which allows us to collect and export them to another service, e.g. Datadog, for visualization and alerting.

Integration

For specific details about how to ingrate the SDK with existing applications or services, please refer to the specific README for each SDK.

OpenTelemetry Collector

The OpenTelemetry Collector offers a vendor-agnostic implementation on how to receive, process, and export telemetry data. It removes the need to run, operate, and maintain multiple agents/collectors in order to support open-source observability data formats (e.g. Jaeger, Prometheus, etc.) sending to one or more open-source or commercial back-ends.

Configuration

The configuration file controls how the data is collected, transformed, and then exported to other services. You can read more on how the process works here.

In order for the OpenTelemetry Collector to correctly tag traces for each service, you will need to configure the following environment variables, which are then used in the configuration file mentioned above

- SERVICE_NAME="REPLACE_WITH_SERVICE_OR_APP_NAME"
- SERVICE_ENV="REPLACE_WITH_SERVICE_OR_APP_ENV"
- OTEL_EXPORTER_OTLP_ENDPOINT=http://0.0.0.0:4318
- DD_API_KEY="REPLACE_WITH_REAL_API_KEY"  # <-- necessary when exporting to Datadog

If you need to run multiple services on the same host/container, you will probably need to make a few changes, such as setting the service name from the SDK initialization code block, e.g. example config for Ruby

Collector Process

The OpenTelemetry Collector can be started on the host using the shell script, which downloads the specified version of the binary and runs it in background, using the configuration file.

To automatically start the process on services like Heroku, you can add the script to the Procfile (e.g. Ruby)

web: ./open-telemetry/start-otel-collector.sh; bundle exec rerun --background --force-polling -- ruby api-key-service.rb -o 0.0.0.0 -s Puma

This is the approach Heroku suggests for running multiple processes on the same dyno.