https://github.com/autotelic/fastify-opentelemetry
A Fastify plugin that utilizes the OpenTelemetry API to provide request tracing.
https://github.com/autotelic/fastify-opentelemetry
Last synced: about 1 year ago
JSON representation
A Fastify plugin that utilizes the OpenTelemetry API to provide request tracing.
- Host: GitHub
- URL: https://github.com/autotelic/fastify-opentelemetry
- Owner: autotelic
- License: mit
- Created: 2020-07-02T21:08:21.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2025-02-14T22:32:21.000Z (over 1 year ago)
- Last Synced: 2025-04-03T16:14:34.622Z (about 1 year ago)
- Language: JavaScript
- Size: 173 KB
- Stars: 81
- Watchers: 1
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-list - fastify-opentelemetry
README
# Fastify OpenTelemetry
A [Fastify] plugin that uses the [OpenTelemetry API] to provide request tracing.
## Usage
```sh
npm i @autotelic/fastify-opentelemetry
```
### Examples
#### Plugin Usage
```js
// index.js
// Load your OpenTelemetry/API configuration first. Now the configured SDK will be available
// to fastify-opentelemetry. (See the example configuration below.)
require('./openTelemetryConfig')
const openTelemetryPlugin = require('@autotelic/fastify-opentelemetry')
const fastify = require('fastify')();
(async () => {
await fastify.register(openTelemetryPlugin, { wrapRoutes: true })
fastify.get('/', async function (request, reply) {
const {
activeSpan,
tracer,
// context,
// extract,
// inject,
} = request.openTelemetry()
// Spans started in a wrapped route will automatically be children of the activeSpan.
const childSpan = tracer.startSpan(`${activeSpan.name} - child process`)
// doSomeWork()
childSpan.end()
return 'OK'
})
fastify.listen(3000, (err, address) => {
if (err) {
fastify.log.error(err)
process.exit(1)
}
})
})()
```
#### OpenTelemetry API Configuration
```js
// openTelemetryConfig.js
const {
BatchSpanProcessor,
ConsoleSpanExporter,
TraceIdRatioBasedSampler
} = require('@opentelemetry/sdk-trace-base')
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-node')
// Configure a tracer provider.
const provider = new NodeTracerProvider({
sampler: new TraceIdRatioBasedSampler(0.5)
})
// Add a span exporter.
provider.addSpanProcessor(
new BatchSpanProcessor(new ConsoleSpanExporter())
)
// Register a global tracer provider.
provider.register()
// Note: the above is just a basic example. fastify-opentelemetry is compatible with any
// @opentelemetry/api configuration.
```
See [/example](./example/index.js) for a working example app. To run the example app locally, first clone this repo and then `npm i` and run:
```sh
npm run dev
```
## API
### Configuration
This plugin leaves all tracer configuration to the [OpenTelemetry API]. The tracer and propagation method are pulled in from the global tracer provider and global propagator, respectively. This allows the config for the plugin itself to be minimal.
The plugin accepts the the following configuration properties:
- **`exposeApi` : `boolean`** - Used to prevent the plugin from decorating the request. By default the request will be decorated (i.e. defaults to `true`).
- **`formatSpanName` : `(FastifyRequest) => string`** - Custom formatter for the span name. The default format is ``` `${req.method} ${req.routeOptions.url}` ```.
- **`formatSpanAttributes` : `object`** - Contains formatting functions for span attributes. *Properties*:
- **`request`: `(FastifyRequest) => object`** - On request, the returned object will be added to the current span's attributes. The default request attributes are:
```js
{ 'req.method': request.raw.method, 'req.url': request.raw.url }
```
- **`reply`: `(FastifyReply) => object`** - On reply, the returned object will be added to the current span's attributes. The default reply attributes are:
```js
{ 'reply.statusCode': reply.statusCode }
```
- **`error`: `(Error) => object`** - On error, the returned object will be added to the current span's attributes. The default error attributes are:
```js
{
'error.name': error.name,
'error.message': error.message,
'error.stack': error.stack
}
```
- **`wrapRoutes` : `boolean | string[]`** - When `true`, all route handlers will be executed with an active context equal to `request.openTelemetry().context`. Also accepts an array containing all route paths that should be wrapped. Optional - disabled by default.
- Route paths must have a leading `/` and no trailing `/` (eg. `'/my/exact/route/path'`).
- Wrapping a route allows for any span created within the scope of the route handler to automatically become children of the current request's `activeSpan`. This includes spans created by automated [OpenTelemetry instrumentations].
- A global context manager (eg. [`AsyncHooksContextManager`]) is required to provide an active context to the route handler.
- **`ignoreRoutes` : `string[] | (path: string, method: string) => boolean`** - Configure the [hooks](#hooks) added by this plugin to ignore certain route paths (ie. no automated tracing for that route). Takes precedence over `wrapRoutes`.
- Can be an array of Route paths (following the same format as `wrapRoutes`).
- Can be a function that receives a route's path and method, and returns a boolean (return `true` to ignore). For example, to disable tracing on `OPTIONS` routes:
```js
fastify.register(openTelemetryPlugin, {
ignoreRoutes: (path, method) => method === 'OPTIONS'
})
```
- The ignored routes will still have access to `request.openTelemetry`, but `activeSpan` will be `undefined`.
- **`propagateToReply` : `boolean`** - When `true`, the current span context will be injected into the reply headers using your registered propagators. Defaults to `false`.
- **`spanOptions` : `SpanOptions | (FastifyRequest) => SpanOptions`** - [`SpanOptions`] or a function that returns [`SpanOptions`]. These will be passed into `tracer.startSpan` on each request. Defaults to `{ kind: 1 }`.
### Request Decorator
This plugin decorates the request with an `openTelemetry` function that returns an object with the following properties:
- **`context`: [`Context`]** - Context containing the active span along with any extracted context.
- **`activeSpan`: [`Span`]** - The active span (while this is available via `context`, here we just provide a shortcut to it.).
- **`extract`: [`Propagation.extract`]** - Wraps the propagation API's extract method, and passes in the current request's context as the `context` argument. This returns a new context and will **not** affect the request's trace context. Accepts the following arguments:
- **`carrier`: `object`** - Object containing the context to be extracted.
- **`getter`: [`TextMapGetter`]** - Object containing `get` and `keys` methods. Used to extract values from carrier. Defaults to OpenTelemetry's [`defaultTextMapGetter`].
- **`inject`: [`Propagation.inject`]** - Wraps the propagation API's inject method, and passes in the current request's context as the `context` argument. Accepts the following arguments:
- **`carrier`: `object`** - Object the context will be injected into.
- **`setter`: [`TextMapSetter`]** - Object containing `set` method. Used to inject values into the carrier. Defaults to OpenTelemetry's [`defaultTextMapSetter`].
- **`tracer`: [`Tracer`]** - The tracer created and used by the plugin.
### Hooks
This plugin registers the following Fastify hooks:
- `onRequest`: Start the span.
- `onReply`: Stop the span.
- `onError`: Add error info to span attributes.
- `onRoute`: Added only if `wrapRoutes` is enabled.
- `onSend`: Added only if `propagateToReply` is enabled.
### OpenTelemetry Compatibility
As the [OpenTelemetry API](https://github.com/open-telemetry/opentelemetry-js/tree/main/api#version-compatibility) uses a
variable on the `global` object to store the global API, care needs to be taken to ensure all modules are compatible.
Each version of the OpenTelemetry API will require a specific release of fastify-opentelemetry.
| OpenTelemetry API Version | Minimum Fastify OpenTelemetry Version |
| ------------------------------- | ------------------------------------------ |
| `@opentelemetry/api@1.0.0` | `@autotelic/fastify-opentelemetry@0.14.0` |
| `@opentelemetry/api@0.20.0` | `@autotelic/fastify-opentelemetry@0.13.0` |
| `@opentelemetry/api@1.0.0-rc.0` | `@autotelic/fastify-opentelemetry@0.12.0` |
| `@opentelemetry/api@0.18.0` | `@autotelic/fastify-opentelemetry@0.10.0` |
| `@opentelemetry/api@0.17.0` | `@autotelic/fastify-opentelemetry@0.9.0` |
| `@opentelemetry/api@0.15.0` | `@autotelic/fastify-opentelemetry@0.8.0` |
| `@opentelemetry/api@0.14.0` | `@autotelic/fastify-opentelemetry@0.7.0` |
| `@opentelemetry/api@0.13.0` | `@autotelic/fastify-opentelemetry@0.5.0` |
| `@opentelemetry/api@0.12.0` | `@autotelic/fastify-opentelemetry@0.4.0` |
| `@opentelemetry/api@0.10.0` | `@autotelic/fastify-opentelemetry@0.2.4` |
| `@opentelemetry/api@0.9.0` | `@autotelic/fastify-opentelemetry@0.1.1` |
[Fastify]: https://fastify.io
[OpenTelemetry API]: https://github.com/open-telemetry/opentelemetry-js/tree/main/api
[`Context`]: https://open-telemetry.github.io/opentelemetry-js/interfaces/_opentelemetry_api.Context.html
[`Propagation.extract`]: https://open-telemetry.github.io/opentelemetry-js/classes/_opentelemetry_api.PropagationAPI.html#extract
[`Propagation.inject`]: https://open-telemetry.github.io/opentelemetry-js/classes/_opentelemetry_api.PropagationAPI.html#inject
[`Span`]: https://open-telemetry.github.io/opentelemetry-js/interfaces/_opentelemetry_api.Span.html
[`Tracer`]: https://open-telemetry.github.io/opentelemetry-js/interfaces/_opentelemetry_api.Tracer.html
[`TextMapGetter`]: https://open-telemetry.github.io/opentelemetry-js/interfaces/_opentelemetry_api.TextMapGetter.html
[`defaultTextMapGetter`]: https://open-telemetry.github.io/opentelemetry-js/modules/_opentelemetry_api.html#defaultTextMapGetter
[`TextMapSetter`]: https://open-telemetry.github.io/opentelemetry-js/interfaces/_opentelemetry_api.TextMapSetter.html
[`defaultTextMapSetter`]: https://open-telemetry.github.io/opentelemetry-js/modules/_opentelemetry_api.html#defaultTextMapSetter
[OpenTelemetry instrumentations]: https://github.com/open-telemetry/opentelemetry-js#node-instrumentations
[`AsyncHooksContextManager`]: https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-context-async-hooks
[`SpanOptions`]: https://open-telemetry.github.io/opentelemetry-js/interfaces/_opentelemetry_api.SpanOptions.html