Slackbot
04/13/2023, 6:12 PMAnil Kumar Bandrapalli
04/14/2023, 11:20 AMSrikanth Chekuri
04/14/2023, 11:59 AM1. multiple spans are grouping together (of different requests)What do you mean by this “grouping”?
1. when I tried to submit the same request API for a couple times say like 18-20 times, and tracing is showing for 8-9 times only. may i know why couple of requests are not being captured. Is there any way to solve this issue ?This seems like an issue from SDK/instrumentation. Which language & framework are you using? What does SDK setup look like? P.S: 10.2 is pretty old and we have shipped several fixes and enhancement so you may want to upgrade and test on new version.
Anil Kumar Bandrapalli
04/17/2023, 2:07 PMAnil Kumar Bandrapalli
04/17/2023, 2:16 PMAnil Kumar Bandrapalli
04/20/2023, 12:06 PMAnil Kumar Bandrapalli
04/21/2023, 7:56 AMSrikanth Chekuri
04/21/2023, 8:13 AMAnil Kumar Bandrapalli
04/21/2023, 8:26 AMSrikanth Chekuri
04/21/2023, 8:31 AMAnil Kumar Bandrapalli
04/21/2023, 10:32 AMAnil Kumar Bandrapalli
04/21/2023, 11:13 AMSrikanth Chekuri
04/21/2023, 3:20 PMafter upgrading do i need to make changes to my node js instrumentation with latest npm pkgs?Yes, you may not have to do it for Java apps but you will need to update the node packages.
Anil Kumar Bandrapalli
04/24/2023, 7:15 AMAnil Kumar Bandrapalli
05/10/2023, 9:58 AMSrikanth Chekuri
05/10/2023, 10:11 AMAnil Kumar Bandrapalli
05/10/2023, 10:13 AMAnil Kumar Bandrapalli
05/10/2023, 10:13 AMtraceExporter = new OTLPTraceExporter();
sdk = new opentelemetry.NodeSDK({
traceExporter,
instrumentations: [getNodeAutoInstrumentations(), new MongoDBInstrumentation({
enhancedDatabaseReporting: true,
}),],
});
// initialize the SDK and register with the OpenTelemetry API
// this enables the API to record telemetry
sdk.start()Anil Kumar Bandrapalli
05/10/2023, 10:14 AMSrikanth Chekuri
05/10/2023, 10:20 AMAnil Kumar Bandrapalli
05/10/2023, 10:21 AMSrikanth Chekuri
05/10/2023, 10:22 AMAnil Kumar Bandrapalli
05/10/2023, 10:50 AMAnil Kumar Bandrapalli
05/10/2023, 11:53 AMSrikanth Chekuri
05/10/2023, 11:58 AMAnil Kumar Bandrapalli
05/15/2023, 8:26 AMAnil Kumar Bandrapalli
05/15/2023, 12:34 PMAnil Kumar Bandrapalli
05/16/2023, 6:00 AMAnil Kumar Bandrapalli
05/16/2023, 6:55 AMSrikanth Chekuri
05/16/2023, 3:33 PMCould you please help us with document for 18.1 as the site is providing documentation for latest versionI am not sure which document you are referring to.
in the picture you will see 450 ms of POST request, but below spans shows that it took 56 ms to complete the request . I would like to know the remaining time 380ms details. Could please help me to understand thisThe sum of the child spans doesn’t always add up to the parent span duration. It doesn’t mean it took 56ms to complete the request. It means the operations till /engine-rest/… tok 56 millis, there could be another work that is not traced after which is responsible for the rest of 380ms.
Anil Kumar Bandrapalli
05/18/2023, 5:03 AMAnil Kumar Bandrapalli
05/18/2023, 9:42 AMAnil Kumar Bandrapalli
05/19/2023, 10:06 AMSrikanth Chekuri
05/20/2023, 2:18 AMWe are requesting documentation for the older versions of signoz like 0.18.2, 0.18.1, 0.10.2We don’t have versioned documentation. There aren’t many version specific changes.
For the second point, we don’t call any such service. This kind trace we observed intermittently. And our applications are deployed in k8s clusters and the flow of services you can find from below attachementThis not necessarily any call to other service. If a program is spendnig some time doing some work then also you will see this.
Also, I observed one peculiar one. Please find the attached screen shot below. you can see 1.0m it took for the rest api but internally rest api calling another service which took almost 4m time. usually it should 5m for the rest api . am i correct? if yes could you please let me know how i can fix this ?If you could share a full trace json (copy from the network tab) that would be helpful.