Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maraisr/rian
๐ฃ Effective tracing for the edge and origins
https://github.com/maraisr/rian
opentelemetry opentracing telemetry tracer tracing zipkin
Last synced: 6 days ago
JSON representation
๐ฃ Effective tracing for the edge and origins
- Host: GitHub
- URL: https://github.com/maraisr/rian
- Owner: maraisr
- License: mit
- Created: 2021-11-22T12:49:23.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-30T11:42:46.000Z (4 months ago)
- Last Synced: 2025-01-08T11:09:20.918Z (13 days ago)
- Topics: opentelemetry, opentracing, telemetry, tracer, tracing, zipkin
- Language: TypeScript
- Homepage:
- Size: 359 KB
- Stars: 44
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
**A utility to simplify your tracing**
This is free to use software, but if you do like it, consisder supporting me โค๏ธ
[![sponsor me](https://badgen.net/badge/icon/sponsor?icon=github&label&color=gray)](https://github.com/sponsors/maraisr)
[![buy me a coffee](https://badgen.net/badge/icon/buymeacoffee?icon=buymeacoffee&label&color=gray)](https://www.buymeacoffee.com/marais)## โก Features
- ๐ค **Familiar** โ looks very much like opentelemetry.
- โ **Simple** โ `configure()` an environment, create a `tracer()`, `report()` and done.
- ๐ **Performant** โ check the [benchmarks](#-benchmark).
- ๐ชถ **Lightweight** โ a mere 1KB and next to no [dependencies](https://npm.anvaka.com/#/view/2d/rian/).
## ๐ Usage
> Visit [/examples](/examples) for more!
```ts
import { configure, tracer, report } from 'rian';
import { exporter } from 'rian/exporter.otel.http';// ~> configure the environment, all tracers will inherit this
configure('my-service', {
'service.version': 'DEV',
});// ~> create a tracer โ typically "per request" or "per operation".
const trace = tracer('request');function handler(req) {
// ~> start a span
return trace.span(`${req.method} ${req.path}`)(async (s) => {
// set some fields on this span's context
s.set_context({ user_id: req.params.user_id });// ~> span again for `db::read`
const data = await s.span('db::read')(() => db_execute('SELECT * FROM users'));// ~> maybe have some manual spanning
const processing_span = s.span('process records');for (let row of data) {
processing_span.add_event('doing stuff', { id: row.id });
do_stuff(row);
}// don't forget to end
processing_span.end();return reply(200, { data });
});
}const otel_exporter = exporter((payload) =>
fetch('/traces/otlp', {
method: 'POST',
body: JSON.stringify(payload),
}),
);http.listen((req, executionCtx) => {
// ~> report all the spans once the response is sent
executionCtx.defer(() => report(otel_exporter));
return handler(req);
});
```You only need to `report` in your application once somewhere. All spans are collected into the same "bucket".
Example output
Using: [examples/basic.ts](examples/basic.ts)
```
โญโ basic
โ โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ 95 ms โ โฃโโโโโโโโโโโซ โโ setup
โ 41 ms โ โฃโโโโโซ โโ bootstrap
โ 32 ms โ โฃโโโโซ โโ building
โ 59 ms โ โฃโโโโโโซ โโ precompile
โ 80 ms โ โฃโโโโโโโโโซ โโ verify
โ 75 ms โ โฃโโโโโโโโซ โโ spawn thread
โ 371 ms โ โฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโซ โโ doesnt finish
โ 347 ms โ โฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโซ โโ running
โ 341 ms โ โฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโซ โโ e2e
โ 38 ms โ โฃโโโโซ โโ snapshot
โ 13 ms โ โฃโโซ โโ url for page /my-product/sleโฆ
โ โฐโผโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโผโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโผโฏ
โ 0 ms 318.500 ms 637 ms
โ
โ one โโ unit is less than: 10.443 ms
โ total time: 637 ms
โฐโ
โญโ thread #1
โ โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ 20 ms โ โฃโโโโโโโโโโโโโโโโโโโโโซ โโ setup
โ 63 ms โ โฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโซ โโ bootstrap
โ โฐโผโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโผโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโดโผโฏ
โ 0 ms 31.500 ms 63 ms
โ
โ one โโ unit is less than: 1.016 ms
โ total time: 63 ms
โฐโ
```## ๐ API
#### Module: [`rian`](./packages/rian/src/index.ts)
The main and _default_ module responsible for creating and provisioning spans.
> ๐ก Note ~> when providing span context values, you can use
> [Semantic Conventions](https://opentelemetry.io/docs/reference/specification/trace/semantic_conventions/), but won't
> be enforced.#### Module: [`rian/async`](./packages/rian/src/async.ts)
A module that utilizes the `async_hooks` API to provide a `tracer` and `spans` that can be used where the current span
isn't accessible.> ๐ก Note ~> this module should be used mutually exclusively with the main `rian` module.
Example
```ts
import { configure, tracer, span, currentSpan, report } from 'rian/async';
import { exporter } from 'rian/exporter.otel.http';function handler(req) {
return span(`${req.method} ${req.path}`)(async () => {
const s = currentSpan();s.set_context({ user_id: req.params.user_id });
const data = await s.span('db::read')(() => db_execute('SELECT * FROM users'));
const processing_span = s.span('process records');
for (let row of data) {
processing_span.add_event('doing stuff', { id: row.id });
do_stuff(row);
}processing_span.end();
return reply(200, { data });
});
}const httpTrace = tracer('http');
http.listen((req, executionCtx) => {
executionCtx.defer(() => report(exporter));
return httpTrace(() => handler(req));
});
```#### Module: [`rian/exporter.zipkin`](./packages/rian/src/exporter.zipkin.ts)
Exports the spans created using the zipkin protocol and leaves the shipping up to you.
#### Module: [`rian/exporter.otel.http`](./packages/rian/src/exporter.otel.http.ts)
Implements the OpenTelemetry protocol for use with http transports.
## ๐งโ๐ณ Exporter Recipes
NewRelic
```ts
import { configure, tracer, report } from 'rian';
import { exporter } from 'rian/exporter.zipkin';const newrelic = exporter((payload) =>
fetch('https://trace-api.newrelic.com/trace/v1', {
method: 'POST',
headers: {
'api-key': '',
'content-type': 'application/json',
'data-format': 'zipkin',
'data-format-version': '2',
},
body: JSON.stringify(payload),
}),
);configure('my-service');
const tracer = tracer('app');
await report(newrelic);
```[learn more](https://docs.newrelic.com/docs/distributed-tracing/trace-api/introduction-trace-api/)
Lightstep
```ts
import { configure, tracer, report } from 'rian';
import { exporter } from 'rian/exporter.otel.http';const lightstep = exporter((payload) =>
fetch('https://ingest.lightstep.com/traces/otlp/v0.9', {
method: 'POST',
headers: {
'lightstep-access-token': '',
'content-type': 'application/json',
},
body: JSON.stringify(payload),
}),
);configure('my-service');
const tracer = tracer('app');
await report(lightstep);
```[learn more](https://opentelemetry.lightstep.com/tracing/)
## ๐ค Motivation
To clarify, `rian` is the Irish word for "trace".
In our efforts to be observant citizens, we often rely on tools such as NewRelic, Lightstep, and Datadog. However, these
tools can be bloated and slow, often performing too many unnecessary tasks and driving up costs, as every span costs.This is where rian comes in as a lightweight, fast, and effective tracer inspired by industry giants OpenTracing and
OpenTelemetry. These frameworks were designed to abstract the telemetry part from vendors, allowing libraries to be
instrumented without needing to know about the vendor.Rian does not intend to align or compete with them, slightly different goals. Rian aims to be used exclusively for
instrumenting your application, particularly critical business paths. While rian can scale to support more complex
constructs, there are profiler tools that are better suited for those jobs. Rian's primary design goal is to provide
better insights into your application's behavior, particularly for edge or service workers where a lean tracer is
favored.Rian does not by design handle injecting [`w3c trace-context`](https://www.w3.org/TR/trace-context/), or
[propagating baggage](https://www.w3.org/TR/baggage/). But we do expose api's for achieving this.## ๐จ Benchmark
> via the [`/bench`](/bench) directory with Node v17.2.0
```
Validation :: single span
โ rian
โ rian/async
โ opentelemetryBenchmark :: single span
rian x 277,283 ops/sec ยฑ3.57% (90 runs sampled)
rian/async x 279,525 ops/sec ยฑ2.33% (91 runs sampled)
opentelemetry x 155,019 ops/sec ยฑ13.13% (70 runs sampled)Validation :: child span
โ rian
โ rian/async
โ opentelemetryBenchmark :: child span
rian x 146,793 ops/sec ยฑ3.38% (87 runs sampled)
rian/async x 180,488 ops/sec ยฑ1.64% (92 runs sampled)
opentelemetry x 102,541 ops/sec ยฑ9.77% (73 runs sampled)
```> And please... I know these results are anything but the full story. But it's a number and point on comparison.
## License
MIT ยฉ [Marais Rossouw](https://marais.io)
##### Disclaimer
- NewRelic is a registered trademark of https://newrelic.com/ and not affiliated with this project.
- Datadog is a registered trademark of https://www.datadoghq.com/ and not affiliated with this project.
- Lightstep is a registered trademark of https://lightstep.com/ and not affiliated with this project.