This project demonstrates the implementation of a custom OpenTelemetry sampler in a TypeScript Express application. The sampler combines trace ID-based sampling with deterministic attribute-based sampling decisions.
- Custom OpenTelemetry sampler implementation
- Express.js REST API
- TypeScript support
- Automatic instrumentation using OpenTelemetry
- Configurable sampling rates
- Node.js (Latest LTS version recommended)
- npm or yarn
- OpenTelemetry collector (for receiving traces)
- Clone the repository
- Install dependencies:
npm install
The application uses the following key configurations:
- Sampling Rate: Configured in
tracing.ts
(currently set to 10% - 0.1) - Service Name: 'sampled-service'
- Port: 4005
Run the application using npm:
npm start
Returns a simple hello message and demonstrates basic span creation.
Accepts JSON data and returns it with a confirmation message.
The project includes a custom sampler (DetermisticAndTraceIDSampler
) that combines two sampling strategies:
- Trace ID-based sampling: Uses the trace ID to make consistent sampling decisions
- Attribute-based sampling: Allows override of sampling decisions based on span attributes
Make sure to have an OpenTelemetry collector or Environment variables configured to receive traces. The application is configured to send traces using OTLP HTTP protocol.
Key dependencies include:
- @opentelemetry/api
- @opentelemetry/auto-instrumentations-node
- @opentelemetry/sdk-trace-base
- express
- typescript
ISC
Feel free to submit issues and pull requests.