Artem Vozhdayenko
Artem Vozhdayenko
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...
I heavily use nvim with your awesome plugin for the daily work, and sometimes I need to make requests to the internal webapps which work via TLS with self-signed certs....
Seems like Python's `requests` follows redirects by default. To me, this is not convenient. So, can we disable this by default or at least have some option?
Before, HttpStop handler was waiting till the main thread works, and the async task should be done first. Async task had that queue.get handler and process.join as well, so it...
Steps to replicate: Have a record with some non-existing hostname, e.g. `GET http://101.102.103.104:8089/v1/models` The request takes long, it's expected as it probably tries to ping some non-existing IP. (However, any...
Currently, there is no API to insert custom resource attributes.\ For example, to set `deployment.environment` semantic attribute from OpenTelemetry Semantic Conventions, one has to do smth like: ```js postProcessor: (spans)...
For now the application supports only Windows using JNI and calling Win32 API. Works fine but won't work on other operating systems. Need to implement adapters of `HotkeyBindManager` for Mac...
Implements GH-104 Dry run mode includes tests suites parsing, request context and body sanity check but no actual request population nor sending, and obviously no response parsing. Example of suites...