A utility to simplify your tracing
This is free to use software, but if you do like it, consisder supporting me โค๏ธ
-
๐ค Familiar โ looks very much like opentelemetry.
-
โ Simple โ
configure()
an environment, create atracer()
,report()
and done. -
๐ Performant โ check the benchmarks.
-
๐ชถ Lightweight โ a mere 1KB and next to no dependencies.
Visit /examples for more!
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
โญโ 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
โฐโ
Module: rian
The main and default module responsible for creating and provisioning spans.
๐ก Note ~> when providing span context values, you can use Semantic Conventions, but won't be enforced.
Module: rian/async
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
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
Exports the spans created using the zipkin protocol and leaves the shipping up to you.
Module: rian/exporter.otel.http
Implements the OpenTelemetry protocol for use with http transports.
NewRelic
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': '<your 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);
Lightstep
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': '<your api key>',
'content-type': 'application/json',
},
body: JSON.stringify(payload),
}),
);
configure('my-service');
const tracer = tracer('app');
await report(lightstep);
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
, or
propagating baggage. But we do expose api's for achieving this.
via the
/bench
directory with Node v17.2.0
Validation :: single span
โ rian
โ rian/async
โ opentelemetry
Benchmark :: 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
โ opentelemetry
Benchmark :: 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.
MIT ยฉ Marais Rossouw
- 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.