Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ MAX_RETRIES=2

# Observability dashboard
OBSERVABILITY_ENABLED=true
# Docker Compose bind-mounts ./data to /app/data, so history stays in the repo root.
OBSERVABILITY_DB_PATH=/app/data/observability.sqlite3
# Non-Docker installs fall back to "observability.sqlite3" in the current
# working directory (see src/core/config.py). Docker users get the
# /app/data/... path via docker-compose.yml's environment override and the
# matching ./data:/app/data bind mount, so this line is intentionally
# omitted to avoid breaking host installs that don't have /app.
OBSERVABILITY_QUEUE_SIZE=1000
# Keep tool argument storage off unless you explicitly need deeper debugging.
OBSERVABILITY_STORE_TOOL_ARGS=false
Expand Down
Loading