Alex Hall
Alex Hall
When I run the example in https://logfire.pydantic.dev/docs/integrations/databases/asyncpg/, I see a span for `SELECT * FROM test`. Not sure what might be different for you. What does `logfire info` show? You...
Hi, we'd love to fix that details panel error but will need more info. Can you share: - What code produces this? - Does this happen in all browsers? Could...
See https://logfire.pydantic.dev/docs/how-to-guides/sampling/#custom-head-sampling to filter out `connect` spans. Try upgrading all your opentelemetry packages and see if that helps with asyncpg.
Yes, install `openinference-instrumentation-agno` and use it like so: ```python from agno.agent import Agent from agno.models.openai import OpenAIChat from openinference.instrumentation.agno import AgnoInstrumentor import logfire logfire.configure() AgnoInstrumentor().instrument() agent = Agent(model=OpenAIChat(id='gpt-4o-mini')) agent.print_response('Hi') ```
If the data isn't in the spans, then it doesn't matter where it's being sent. If the data is there but not displayed nicely, that's more fixable. But they're not...
I think it's just `str()` on a pydantic model, in which case making it produce JSON instead should be easy and would help a lot. The exact standard for how...
They're using the OTel standard in the basic sense but not the semantic conventions. `input.value` is not a conventional attribute. The conventions are in https://opentelemetry.io/docs/specs/semconv/gen-ai/gen-ai-spans/#inference. The input messages would go...
The rate limits only apply to the free tier, not the pro plan. I see you're part of the organization mqrtel which is being rate limited, and it's on the...
> At the moment the Logfire website does not have a way to associate spans as "siblings" (to my knowledge). It does, it's called span links, here's an example: ```python...
There was a bug here which meant that `all_messages_events` was being dropped entirely when it was too long, instead of being truncated. That's fixed, meaning the situation is somewhat better...