Maklestiguan
Maklestiguan
It **probably** won't work with every instrumentation, say `mongoose` or `amqplib` or `pino`, but seem to work fine with `http` instrumentation. I'm not sure why `http` does work but here's...
Basically you should provide it in module config, since it [extends](https://github.com/MetinSeylan/Nestjs-OpenTelemetry/blob/main/src/OpenTelemetryModuleConfig.ts#L28) `Partial`, then [merges](https://github.com/MetinSeylan/Nestjs-OpenTelemetry/blob/main/src/OpenTelemetryModule.ts#L34) default config and what you have provided (defaults get overridden) and then `nodeSDK` [goes with your...
Try implementing something like this: ``` /// sets text of captcha pub fn set_text(&mut self, vec: &[char]) -> &mut Self { for char in vec { if let Some((c, i))...