hello, is anyone able to help me troubleshoot miss...
# support
b
hello, is anyone able to help me troubleshoot missing Otel data? here is the output from the troubleshoot pod:
Copy code
~ » 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=<http://dev-otel.olympiafinancial.com:4317|dev-otel.olympiafinancial.com:4317>
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
s
How are you sending data to SigNoz?
b
Copy code
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