# Components

### Tracer

The core component for instrumenting and monitoring code.

#### Features

* Function decoration
* Event tracking
* Metric collection
* Data buffering

#### Usage

```python
from agentneo import Tracer

tracer = Tracer(session=neo_session)
tracer.start()

@tracer.trace_llm("my_llm")
def llm_function(): pass

@tracer.trace_tool("my_tool")
def tool_function(): pass

tracer.stop()
```

### Dashboard

Interactive web interface for visualization and analysis.

#### Features

* Real-time monitoring
* Interactive graphs
* Performance metrics
* Detailed Trace views

#### Access

```python
from agentneo import launch_dashboard
launch_dashboard(port=3000)
```

### Storage

Data persistence layer for traces and metrics.

#### Features

* SQLite database
* JSON log files
* Query interface
* Data export

#### Configuration

```python
AgentNeo(
    session_name="my_session",
    storage_path="./data",
    storage_type="sqlite"
)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://agentneo.raga.ai/features/components.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
