opentelemetry-sdk-workers icon indicating copy to clipboard operation
opentelemetry-sdk-workers copied to clipboard

An Otel SDK for Cloudflare Workers

Results 15 opentelemetry-sdk-workers issues
Sort by recently updated
recently updated
newest added

Bumps [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) from 2.9.0 to 2.20.1. Release notes Sourced from wrangler's releases. [email protected] Patch Changes #3820 546c2319 Thanks @​GregBrimble! - fix: Prevent wrangler pages dev from serving asset files outside...

dependencies

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 7.2.1 to 7.2.4. Release notes Sourced from protobufjs's releases. protobufjs: v7.2.4 7.2.4 (2023-06-23) Bug Fixes do not let setProperty change the prototype (#1899) (e66379f) protobufjs: v7.2.3 7.2.3...

dependencies

Just testing out the library :heart: Wondering if I've missed a way to create custom spans. The use case I've got a few examples for. One is, we're planning on...

To be spec compliant `fetch` actually needs a `duplex` option when sending a stream as body. See https://github.com/nodejs/node/issues/46221 This will make this library work in Node.js with native fetch.

Hi @RichiCoder1! I am looking at the function `cloneRequest`: https://github.com/RichiCoder1/opentelemetry-sdk-workers/blob/271b1b2a17a1b825d63ac8af54e639bcee83631c/packages/opentelemetry-sdk-workers/src/utils.ts#L3 Because of strange implementation of URL class inside workers runtime, non-encoded parameters get encoded after `toString` invocation. It's not reproduced...

I found some non-clear behavior, and I wonder if it is intentional. https://github.com/RichiCoder1/opentelemetry-sdk-workers/blob/271b1b2a17a1b825d63ac8af54e639bcee83631c/packages/opentelemetry-sdk-workers/src/sdk.ts#L290-L294 I would expect `throw` there instead of `return` at line 292. Am I missing something obvious?

Hi, I have a question regarding `SpanKind` which is set to `INTERNAL` now. As per docs: - https://opentelemetry.io/docs/concepts/signals/traces/#internal - https://opentelemetry.io/docs/reference/specification/trace/api/#spankind `INTERNAL` span kind should be used to instrument some internal...

Hey there 👋 It would be nice if we can instrument the `fetch` call to durable objects.

I didn't implement propagator support originally as I was worried about potential global assumptions they were making, but after more research I think it may be reasonable to expose this...