For the complete documentation index, see llms.txt. This page is also available as Markdown.

Monitoring & Debugging

Monitor your AI Agents, RAGs, and Workflows in real-time.

The Inspector team designed Neuron with built-in observability features, so you can monitor AI agents running, helping you maintain production-grade implementations with confidence.

Install Inspector

You can follow this step-by-step guide to connect your Neuron AI Agents, RAG, or Workflow to the Inspector monitoring dashboard:

After connecting you app to Inspector when your agents are being executed, you will be able to explore the details of their inference steps, tool calls, and more.

If you want to monitor the whole application you can install the Inspector package based on your development environment. We provide integration packages for PHP, Laravel, Symfony, CodeIgniter, Drupal. Check out them on our GitHub organization.

Create An Ingestion Key

To create an Ingestion key head to the Inspector dashboard and create a new app.

Inject InspectorObeserver

If your application doesn't have a specific integration with PHP environment variables, you can inject the InspectorObserver component into the agent programmatically, passing the ingestion key generated in the dashboard:

Logging

If you want to report agent activity into your log system you can attach the built-in LogObserver to your agent passing an instance of a PSR LoggerInterface compatible logger, like monolog for example:

All itnernal events with their payload will be logged.

Last updated