Kumarajiva

Results 7 comments of Kumarajiva

Went through 3 different libraries. This is one is joy to work with. (Works great with Azure AD SAML SSO). Thanks so much!

I agree, instructions are ambigous.

The diag message is normal. `instrumentation-undici` does not patch any imported module: https://github.com/open-telemetry/opentelemetry-js-contrib/blob/7272ca85625248718c6276559b36853ea93ae97e/plugins/node/instrumentation-undici/src/undici.ts#L74 You are indeed using `node-fetch`: https://github.com/digitalbazaar/otel-example/blob/06f50a190d6b2b2d5bdf415938757d4b72f10894/index.js#L5 which is not undici

### Well, lets go all the way... Refering to: [examples/esm-http-ts/index.ts](https://github.com/open-telemetry/opentelemetry-js/blob/main/examples/esm-http-ts/index.ts) as a baseline and doing slight modifications: 1. Create an `instrumentation.js` file next to your `index.js`, and place all your...

### For `NodeSDK` Use-case The `instrumentation.js` would be (Nearly identical but see [this issue](https://github.com/open-telemetry/opentelemetry-js/issues/4638)): ```js import { diag, DiagConsoleLogger, DiagLogLevel } from '@opentelemetry/api' import { Resource } from '@opentelemetry/resources' import...

IMHO, make 2 demos, for CJS and ESM respectively. Both are in use (And this status is to stay this way for indefinite amount of time - there are no...