text
stringlengths
0
59.1k
- By provider
- Percentile distribution
## Tool Usage Section
### Tool Analytics Charts
Visualizes tool execution patterns:
| Chart | Description |
| ---------------------- | ------------------------------- |
| Tool Call Distribution | Pie chart of tool usage by name |
| Tool Latency | Average execution time per tool |
| Tool Success Rate | Success/failure ratio per tool |
| Tool Usage Over Time | Time-series of tool calls |
## Agent/Workflow Usage Section
### Agent Analytics Charts
Shows agent and workflow execution metrics:
| Chart | Description |
| ------------------ | ------------------------------------ |
| Agent Distribution | Breakdown of runs by agent name |
| Agent Success Rate | Success/failure ratio per agent |
| Agent Latency | Average execution time per agent |
| Workflow Steps | Average steps per workflow execution |
## Prompt Analytics Section
### Summary Cards
| Card | Description |
| ------------- | --------------------------------------- |
| Total Prompts | Number of active prompts in the project |
| Total Usage | All-time prompt execution count |
| Success Rate | Average success rate across all prompts |
| Total Cost | Cumulative cost for prompt executions |
### Top Prompts
Lists the most frequently used prompts with:
- Prompt name and type (chat/completion)
- Current version
- Usage count
Click a prompt to navigate to its detail page.
## Data Limitations
Free plan users see the first 100 records of the current month. A "Limited view" badge appears when data is truncated. Upgrade to Pro for full historical data access.
<|endoftext|>
# source: VoltAgent__voltagent/website/observability/setup.md type: docs
---
title: Setup
---
import StepSection from '@site/src/components/docs-widgets/StepSection';
# Setup
This guide helps you connect a VoltAgent app to VoltOps, verify telemetry quickly, and resolve common setup issues.
<br/>
<StepSection stepNumber={1} title="Configure Project Keys">
<video controls loop muted playsInline style={{width: '100%', height: 'auto'}}>
<source src="https://cdn.voltagent.dev/docs/voltop-docs/observability-settings.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
<br/>
<br/>
Get your project keys from [console.voltagent.dev/settings/projects](https://console.voltagent.dev/settings/projects).
You need two keys:
- **Public Key**: `pk_xxxx`
- **Secret Key**: `sk_live_xxxx`
### Add Environment Variables
VoltAgent auto-detects these variables and connects to VoltOps:
```bash
VOLTAGENT_PUBLIC_KEY=pk_xxxx
VOLTAGENT_SECRET_KEY=sk_live_xxxx
```
No extra observability code is required for the basic path.
</StepSection>
<StepSection stepNumber={2} title="Configuration">