We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related:
The benchmarks in this repo showcases that adding the following code to a HTTP or Express handler increases the latency by a few fold:
const tracer = opentelemetry.trace.getTracer("hello-tracer"); const span = tracer.startSpan("hello"); span.setAttribute("value", "world"); span.end();
This is the latest screenshot of the benchmarks located in benchmarks.md.
benchmarks.md
You can see that by just adding the highlighted snippet of code increases the latency of the http benchmarks from 6.2ms to 22.03ms.
http
6.2ms
22.03ms
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related:
The benchmarks in this repo showcases that adding the following code to a HTTP or Express handler increases the latency by a few fold:
This is the latest screenshot of the benchmarks located in
benchmarks.md
.You can see that by just adding the highlighted snippet of code increases the latency of the
http
benchmarks from6.2ms
to22.03ms
.The text was updated successfully, but these errors were encountered: