mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 18:17:48 -05:00
594a99817c
This PR removes the public Deno.tracing.Span API. We are not confident we can ship an API that is better than the `@opentelemetry/api` API, because V8 CPED does not support us using `using` to manage span context. If this changes, we can revisit this decision. For now, users wanting custom spans can instrument their code using the `@opentelemetry/api` API and `@deno/otel`. This PR also speeds up the OTEL trace generation by a 30% by using Uint8Array instead of strings for the trace ID and span ID.
14 lines
370 B
JSON
14 lines
370 B
JSON
{
|
|
"name": "@deno/otel",
|
|
"version": "0.0.2",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./register": "./src/register.ts"
|
|
},
|
|
"tasks": {
|
|
"check:license": "deno run -A tools/check_license.ts",
|
|
"check:docs": "deno doc --lint src/index.ts",
|
|
"check": "deno task check:license --check",
|
|
"ok": "deno fmt --check && deno lint && deno task check"
|
|
}
|
|
}
|