TLDR Brian sought help with missing Otel data in SigNoz. Srikanth asked about data sending method. Brian shared code and considered it user error.
How are you sending data to SigNoz?
```builder.Services.AddOpenTelemetry() .WithTracing(trace => trace.AddAspNetCoreInstrumentation() .ConfigureResource(resource => resource.AddService( serviceName: serviceName, serviceVersion: serviceVersion)) .AddOtlpExporter(otlp => { otlp.Endpoint = new Uri($"http://{builder.Configuration["Otel:Collector"]}"); otlp.Protocol = OtlpExportProtocol.Grpc; }));```
this does seem to start putting in a minimum amount of data, though I'm still not finding everything I'm looking for
I think it's user error at this point though, but thanks
Brian
Mon, 26 Jun 2023 20:13:42 UTChello, is anyone able to help me troubleshoot missing Otel data? here is the output from the troubleshoot pod: ```~ » kubectl -n telemetry run troubleshoot --image=signoz/troubleshoot \ ~ --restart='Never' -i --tty --rm --command -- ./troubleshoot checkEndpoint \ --endpoint=signoz-otel-collector.telemetry.svc.cluster.local:4317 2023-06-26T20:12:26.069Z INFO troubleshoot/main.go:28 STARTING! 2023-06-26T20:12:26.070Z INFO checkEndpoint/checkEndpoint.go:41 checking reachability of SigNoz endpoint 2023-06-26T20:12:26.093Z INFO troubleshoot/main.go:46 Successfully sent sample data to signoz ... pod "troubleshoot" deleted ~ » kubectl -n telemetry run troubleshoot --image=signoz/troubleshoot \ ~ --restart='Never' -i --tty --rm --command -- ./troubleshoot checkEndpoint \ --endpoint=
2023-06-26T20:12:32.731Z INFO troubleshoot/main.go:28 STARTING!
2023-06-26T20:12:32.731Z INFO checkEndpoint/checkEndpoint.go:41 checking reachability of SigNoz endpoint
2023-06-26T20:12:32.739Z INFO troubleshoot/main.go:46 Successfully sent sample data to signoz ...
pod "troubleshoot" deleted```