Skip to main content
Agno traces can include prompts, completions, tool inputs, and tool outputs. Review Data Governance before enabling production traffic.

Install

Setup

Agno itself supports session_id and user_id as Agent constructor params. Spans carry OpenInference attributes plus agno.agent.name / agno.team.name. Instrument once at process start; child agents in teams inherit.

Alternative: OpenLit

openlit.init(...) is also supported and auto-instruments common providers in one shot.

Verify

Run one agent.print_response call, then open Raw logs in Agnost. Confirm spans include session_id, user_id, and agno.agent.name.

Troubleshooting

  • Instrument once at process start before agent calls.
  • Confirm OTEL_EXPORTER_OTLP_HEADERS contains X-Agnost-Org-ID=<your-org-id>.
  • If child team spans are missing, confirm the parent Agno agent is instrumented before teams are constructed.

References