What is a project?
When you calltrace.init() in the SDK, you pass a project name as the first argument. Veritrix uses that string to route the trace to the matching project in your account. If no project with that name exists, the trace is dropped and a warning appears in the dashboard.
trace.init() must match the Project Name shown in the dashboard exactly (case-sensitive).
Create a project
1
Open the New Project dialog
In the Veritrix dashboard, click the + New Project button in the left sidebar.
2
Name your project
Enter a short, URL-safe name that describes the agent system — for example,
checkout-agent, research-crew, or support-bot-prod. You can rename it later.3
Save and copy the project name
Click Create project. Copy the exact project name shown — you’ll use it in
trace.init().4
Instrument your agent
Pass the project name to
trace.init() in your agent code and deploy. Traces will start appearing in the dashboard within seconds.Project limits by plan
Free plan accounts are limited to a single project. If you need to observe multiple agent systems or separate production from staging traces, upgrade to the Team plan to unlock unlimited projects.
Switch between projects
All projects in your account are listed in the left sidebar of the dashboard. Click any project name to switch to it — the trace list, search filters, and alert rules all update to show data for the selected project. You can also pin frequently used projects to the top of the sidebar by hovering over the project name and clicking the pin icon.Best practices
Following a consistent project structure from the start makes it much easier to filter traces, set project-specific alerts, and share context with teammates. One project per agent system. Each logically distinct agent pipeline — your checkout agent, your research crew, your support bot — should have its own project. Mixing multiple systems in one project makes traces hard to filter and alerts hard to tune. Separate environments. Create distinct projects for production, staging, and local development. For example:Delete a project
1
Open Project settings
Select the project in the sidebar, then click the Settings tab at the top of the page.
2
Scroll to the Danger Zone
At the bottom of the Settings page, find the Danger Zone section.
3
Confirm deletion
Click Delete project, type the project name to confirm, then click Delete permanently.
trace.init() with that project name will have its traces silently dropped until you create a new project with the same name or update the name in your code.