Skip to main content
Agno collects anonymous usage data about agents, teams, workflows, evals, and AgentOS configurations to help improve the platform and provide better support.
Privacy First: No sensitive data (prompts, responses, user data, or API keys) is ever collected. All telemetry is anonymous and aggregated.

What Data is Collected?

Agno collects basic usage metrics for:
  • Agent runs - Model providers, database types, feature usage
  • Team runs - Multi-agent coordination patterns
  • Workflow runs - Orchestration and execution patterns
  • Eval runs - Eval type, model, and run configuration
  • AgentOS launches - Platform usage and configurations

Example Telemetry Payload

Here’s what an agent run telemetry payload looks like:

How to Disable Telemetry

You can disable telemetry in two ways:

Environment Variable

Set the AGNO_TELEMETRY environment variable to false:

Per-Instance Configuration

Disable telemetry for specific agents, teams, workflows, or AgentOS instances:
This works for:
  • Agents: Agent(telemetry=False)
  • Teams: Team(telemetry=False)
  • Workflows: Workflow(telemetry=False)
  • Evals: AccuracyEval(telemetry=False) (also PerformanceEval, ReliabilityEval, and AgentAsJudge)
  • AgentOS: AgentOS(telemetry=False)

Developer Resources