Warning
This repository and all its packages are deprecated and will be archived after October 30th, 2026. Google Cloud Platform now supports native OpenTelemetry Protocol (OTLP) endpoints via the Telemetry API.
Please see the Migration Guide in this repository for step-by-step instructions on migrating to community-maintained OTLP exporters.
The packages in this repository support all officially supported Node.js versions (18, 20, 22, 24).
To get started with instrumentation in Google Cloud, see Generate traces and metrics with Node.js.
To learn more about instrumentation and observability, including opinionated recommendations for Google Cloud Observability, visit Instrumentation and observability.
OpenTelemetry Google Cloud Trace Exporter allows the user to send collected traces to Google Cloud.
Google Cloud Trace is a distributed tracing system. It helps gather timing data needed to troubleshoot latency problems in microservice architectures. It manages both the collection and lookup of this data.
This exporter package assumes your application is already instrumented with the OpenTelemetry SDK. Once you are ready to export OpenTelemetry data, you can add this exporter to your application:
npm install --save @google-cloud/opentelemetry-cloud-trace-exporterAdd the exporter to your existing OpenTelemetry tracer provider (NodeTracerProvider / BasicTracerProvider)
const { TraceExporter } = require('@google-cloud/opentelemetry-cloud-trace-exporter');
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-node');
const { BatchSpanProcessor } = require('@opentelemetry/sdk-trace-base');
// Enable OpenTelemetry exporters to export traces to Google Cloud Trace.
// Exporters use Application Default Credentials (ADCs) to authenticate.
// See https://developers.google.com/identity/protocols/application-default-credentials
// for more details.
// Use your existing provider
const provider = new NodeTracerProvider();
provider.register();
// Initialize the exporter. When your application is running on Google Cloud,
// you don't need to provide auth credentials or a project id.
const exporter = new TraceExporter();
// Add the exporter to the provider
provider.addSpanProcessor(new BatchSpanProcessor(exporter));See README.md for installation and usage information.
OpenTelemetry Google Cloud Trace Propagator allows other services to create spans with the right context.
See README.md for installation and usage information.
OpenTelemetry Google Cloud Monitoring Exporter allows the user to send collected metrics to Google Cloud Monitoring.
See README.md for installation and usage information.
Examples demonstrating how to use the Google Cloud Trace and Google Cloud Monitoring exporters in this repository can be found in the samples directory.
For general OpenTelemetry JavaScript samples (including auto-instrumentation quickstarts and OTLP exporters), visit GoogleCloudPlatform/opentelemetry-samples.