New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@fastly/compute-js-opentelemetry

Package Overview
Dependencies
Maintainers
3
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fastly/compute-js-opentelemetry

OpenTelemetry SDK for Fastly Compute@Edge

0.2.0-alpha.3
alpha
Source
npm
Version published
Weekly downloads
62
-30.34%
Maintainers
3
Weekly downloads
 
Created
Source

OpenTelemetry for JavaScript on Compute@Edge

An implementation of the OpenTelemetry JavaScript API for Fastly Compute@Edge.

Generate traces like this one to follow activity and time in your Compute@Edge applications:

Sample Trace

index.js:

/// <reference types="@fastly/js-compute" />

import './telemetry.js'
import { context, trace } from "@opentelemetry/api";

addEventListener("fetch", (event) => event.respondWith(handleRequest(event)));
async function handleRequest(event) {
  const tracer = trace.getTracerProvider()
    .getTracer('my-tracer');

  const mySpan = tracer.startSpan('my-task');
  context.with(trace.setSpan(context.active(), mySpan), () => {
    doTask();
  });
  mySpan.end();

  return new Response('OK', {
    status: 200,
    headers: new Headers({"Content-Type": "text/plain"}),
  });
}

telemetry.js:

import { context, trace } from "@opentelemetry/api";
import { Resource } from "@opentelemetry/resources";
import { SemanticResourceAttributes } from "@opentelemetry/semantic-conventions";

import { FastlySDK } from "@fastly/compute-js-opentelemetry/sdk-fastly";
import { OTLPTraceExporter } from "@fastly/compute-js-opentelemetry/exporter-trace-otlp-fastly-backend";
import { getComputeJsAutoInstrumentations } from "@fastly/compute-js-opentelemetry/auto-instrumentations-compute-js";

const sdk = new FastlySDK({
  traceExporter: new OTLPTraceExporter({ backend: 'otlp-collector' }),
  instrumentations: [ getComputeJsAutoInstrumentations(), ],
  resource: new Resource({ [SemanticResourceAttributes.SERVICE_NAME]: 'readme-demo', }),
});
await sdk.start();

This implementation extends the standard interfaces and objects provided by the OpenTelemetry JavaScript API and SDK, adapting them for use on the Fastly Compute@Edge platform.

Whereas opentelemetry-js would separate each concern into its own npm package, we provide our components as a single package with multiple exports.

Modules

The table below lists the modules included in this package.

Module (links to documentation)Export NameDescription
Fastly OpenTelemetry SDK@fastly/compute-js-opentelemetry/opentelemetry-sdk-fastlyA utility library that simplifies the initialization and coordination of OpenTelemetry components in use with a Compute@Edge JavaScript application.
Fastly Compute@Edge JavaScript Lifecycle instrumentation@fastly/compute-js-opentelemetry/opentelemetry-instrumentation-fastly-compute-jsAn instrumentation library that generates traces for the Compute@Edge application lifecycle.
Fastly Backend Fetch instrumentation@fastly/compute-js-opentelemetry/opentelemetry-instrumentation-fastly-backend-fetchAn instrumentation library that generates traces for fetch() calls to Fastly backends.
Compute@Edge JavaScript auto-instrumentations@fastly/compute-js-opentelemetry/auto-instrumentations-compute-jsA meta package that automatically loads instrumentations for Compute@Edge JavaScript.
Trace SDK for Fastly@fastly/compute-js-opentelemetry/opentelemetry-sdk-trace-fastlyProvides Span Processor, Tracer Provider, and Context Manager implementations for use with a Compute@Edge JavaScript application.
Trace Exporter for Fastly backend@fastly/compute-js-opentelemetry/exporter-trace-otlp-fastly-backendA Span Exporter implementation that exports traces using the OTLP/HTTP JSON format over a Fastly backend.
Trace Exporter for Fastly named log provider@fastly/compute-js-opentelemetry/exporter-trace-otlp-fastly-loggerA Span Exporter implementation that exports traces using the OTLP/HTTP JSON format over a Fastly named log provider.
Metrics SDK for Fastly@fastly/compute-js-opentelemetry/opentelemetry-sdk-metrics-fastlyProvides a Metric Reader implementation for use with a Compute@Edge JavaScript application.
Metrics Exporter for Fastly backend@fastly/compute-js-opentelemetry/exporter-metrics-otlp-fastly-backendA Metric Exporter implementation that exports metrics using the OTLP/HTTP JSON format over a Fastly backend.
Metrics Exporter for Fastly named log provider@fastly/compute-js-opentelemetry/exporter-metrics-otlp-fastly-loggerA Metric Exporter implementation that exports metrics using the OTLP/HTTP JSON format over a Fastly named log provider.
Exporter Base Classes@fastly/compute-js-opentelemetry/otlp-exporter-fastly-baseBase classes for exporters, containing common code used by the exporter classes listed above.
Diagnostic Logger for Fastly named log provider@fastly/compute-js-opentelemetry/diag-fastly-loggerA DiagLogger implementation that logs to a Fastly named log provider.
Webpack helpers@fastly/compute-js-opentelemetry/webpack-helpersProvides settings needed for use by Webpack as used by the build process of the Compute@Edge JavaScript application. Provides the shims and polyfills needed by the OpenTelemetry libraries.
Core Utilities (Internal Use)(Not exported)Utilities intended to be used internally by the library and not from user code.

Examples

See the examples in the /examples directory.

Example DirectoryDescription
readme-demoExample demo from the beginning of this README
basic-tracing-exampleBasic Tracing Example
basic-metrics-exampleBasic Metrics Example
otel-demoExample that demonstrates OpenTelemetry traces that start at the Edge and nest into an operation at the backend.
otel-http-proxyA sample application designed to collect traces as an HTTPS log endpoint for a Fastly service, sending them to an OpenTelemetry collector.

Webpack

Compute@Edge JavaScript applications can be compiled as a web worker using Webpack as part of their build process, which is useful for applying techniques such as using polyfills and shims.

In order to use the OpenTelemetry packages that we rely on, additions need to be made to the webpack.config.js configuration file. These changes are included in a helper module, @fastly/compute-js-opentelemetry/webpack-helpers, so that they may be applied as such:

const webpackHelpers = require("@fastly/compute-js-opentelemetry/webpack-helpers");

module.exports = {
  entry: "./src/index.js",
  /* ... other configuration */
};

// Add this line
module.exports = webpackHelpers.apply(module.exports);

The use of this module is technically optional, but if you do choose not to use it, you will have to make the appropriate modifications yourself. See webpack-helpers for details.

Notes

Environment Variables

OpenTelemetry defines a well-documented set of environment variables that are designed to allow you to configure defaults for its libraries. However, JavaScript applications built to run on Fastly's Compute@Edge platform perform their upfront initialization at build time ("build-time initialization") rather than during each invocation (that's how they start up so fast). This means that the platform cannot provide a way to read from the environment during build-time initialization, when most OpenTelemetry libraries are initializing.

Therefore, when using this library, the getEnv() function will always return the default values defined by OpenTelemetry. Any changes you require to these defaults need to be made programmatically.

Compatibility

Some opentelemetry-js modules are not currently compatible with Fastly Compute@Edge. The table below is a non-comprehensive list of such components.

ComponentPackageReason / Workaround
NodeSDK@opentelemetry/sdk-nodeRelies on BatchSpanProcessor as well as platforms detectors that are incompatible with Compute@Edge. Use FastlySDK.
OTLPTraceExporter@opentelemetry/exporter-trace-otlp-httpRelies on http and https, which are not available in Compute@Edge. Use OTLPTraceExporter from @fastly/compute-js-opentelemetry/exporter-trace-otlp-fastly-backend or @fastly/compute-js-opentelemetry/exporter-trace-otlp-fastly-logger instead.
OTLPMetricExporter@opentelemetry/exporter-metrics-otlp-httpRelies on http and https, which are not available in Compute@Edge. Use OTLPTraceExporter from @fastly/compute-js-opentelemetry/exporter-metrics-otlp-fastly-backend or @fastly/compute-js-opentelemetry/exporter-metrics-otlp-fastly-logger instead.
ZoneContextManager@opentelemetry/context-zone
@opentelemetry/context-zone-peer-dep
Relies on zone.js, which is incompatible with Compute@Edge. Use FastlyStackContextManager.
AsyncHooksContextManager
AsyncLocalStorageContextManager
@opentelemetry/context-async-hooksRelies on async_hooks, which is not available in Compute@Edge. Use FastlyStackContextManager.
Instrumentations included in opentelemetry-js@opentelemetry/instrumentation-*
@opentelemetry/auto-instrumentations-node
@opentelemetry/auto-instrumentations-web
These rely on other frameworks and modules that are not compatible with Compute@Edge. Use FastlyComputeJsInstrumentation and FastlyBackendFetchInstrumentation.

Issues

If you encounter any non-security-related bug or unexpected behavior, please file an issue using the bug report template.

Security issues

Please see our SECURITY.md for guidance on reporting security-related issues.

License

MIT.

FAQs

Package last updated on 14 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts