Skip to content

How can I track down why certain spans are not shown in Phoenix #7041

Discussion options

You must be logged in to vote

Thank you for the additional info. This looks like it could be a low level Python issue. Would you mind giving the gRPC exporter a try as shown below for example?

import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-grpc";

const provider = new NodeTracerProvider({
  spanProcessors: [
    new SimpleSpanProcessor(
      new OTLPTraceExporter({
        url: "http://localhost:4317",
      }),
    ),
  ],
});

registerInstrumentations({
  instrumentations: [new OpenAIInstrumentation()],
});

provider.register();

Replies: 2 comments 13 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
13 replies
@mikeldking
Comment options

@marcjulianschwarz
Comment options

@marcjulianschwarz
Comment options

@RogerHYang
Comment options

Answer selected by marcjulianschwarz
@marcjulianschwarz
Comment options

@RogerHYang
Comment options

@marcjulianschwarz
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants