Connect your application to Arize and then apply the BeeAIInstrumentor .
Copy
Ask AI
# Import Arize OTel registrationfrom arize.otel import register# Import the automatic instrumentor from OpenInferencefrom openinference.instrumentation.beeai import BeeAIInstrumentor# Setup OTel via our convenience functiontracer_provider = register( space_id = "your-space-id", # in app space settings page api_key = "your-api-key", # in app space settings page project_name = "my-beeai-project", # name this to whatever you would like)# Start the instrumentor for BeeAIBeeAIInstrumentor().instrument(tracer_provider=tracer_provider)