Dashboard User Guide
A comprehensive guide to using the Fulcrum dashboard for managing AI governance.
Overview
The Fulcrum Dashboard is a high-performance web administration interface built with Next.js for your AI governance platform. From here you can:
- Monitor AI agent activity in real-time
- Create and manage governance policies
- Track budgets and spending
- Review and approve pending actions
- Investigate execution traces
- Configure organization settings
Access the dashboard at: fulcrumlayer.io
Getting Started
1. Sign In
Sign in using your organization's SSO or email/password via Clerk authentication.
2. Organization Setup
If you're a new organization: 1. Create your organization profile 2. Invite team members 3. Set up your first agent connection
3. Connect Your First Agent
Use the SDK to connect your AI agent:
from fulcrum_governance import FulcrumClient
client = FulcrumClient(
api_key="your-api-key",
tenant_id="your-org-id"
)
# Your agent is now governed by Fulcrum policies
Dashboard Sections
Overview (/app/overview)
The Overview page provides a high-level view of your AI operations.
Key Metrics: - Active Agents - Number of connected agents currently running - Total Evaluations - Policy evaluations processed today - Violations - Policy violations detected - Pending Approvals - Actions awaiting human review
Quick Actions: - Deploy new policy - View recent alerts - Check budget status
Activity Feed: Real-time stream of agent events, policy triggers, and system alerts via NATS WebSocket.
Policies (/app/policies)
The heart of your governance strategy.
Features: - View all active policies in card format - Filter by type (Cost, Rate, Content, Approval, Model) - Search policies by name or ID - Sort by violations, priority, or date
Creating Policies: 1. Click Deploy New Policy 2. Choose a template or create custom 3. Configure rules and conditions 4. Set priority and scope 5. Click Deploy
Policy Cards Display: - Policy name and ID - Type badge with color coding - Active/Disabled status - Violation count - Last updated date
Templates: Quickly deploy common policies including: - Rate Limits - Cost Caps - PII Protection - Content Filters
See Policy Authoring Guide for detailed policy configuration.
Approvals (/app/approvals)
Human-in-the-loop workflow management.
Pending Queue: Actions flagged by policies requiring manual intervention: - High-value transactions - Sensitive data access - External communications
Approval Actions: - Approve - Allow the action to proceed - Deny - Block the action with optional feedback
Approval History: Track past decisions with: - Decision timestamp - Approver identity - Full action context - Policy that triggered review
Budgets (/app/budgets)
Control costs at the source.
Budget Overview: - Daily/Monthly spend graphs - Budget utilization percentage - Cost breakdown by agent/model
Thresholds: Set warning and critical alerts: - Notify at 80% - Block at 100%
Allocation: Assign budgets to: - Specific tenants - Departments - Individual workflows
Period Reset: Automatic resets for daily, monthly, or quarterly windows.
Traces (/app/traces)
Deep observability into execution history.
Event Timeline: Scrutinize every LLM call, tool invocation, and checkpoint.
Trace View: Each trace shows: - Request ID and timestamp - Agent and model used - Input/output content - Policy evaluation results - Cost and token usage
Filtering Traces: - By agent - By time range - By policy violation - By cost threshold
Decision Logs: See exactly which policy rule allowed or blocked an action.
Agents (/app/agents)
Manage your AI agent deployments.
Agent Cards: - View status (Running, Idle, Paused) - Connection health - Last activity timestamp
Group Management: Organize agents by workflow or department.
Agent Details: - Configuration settings - Assigned policies - Activity history - Performance metrics
Quick Links: Jump directly to traces for a specific agent.
Analytics (/app/analytics)
Data-driven insights for optimization.
Spend Trends: Visualize cost accumulation over time.
Model Efficiency: Compare performance vs. cost across different LLM providers.
Anomaly Detection: Spot statistical outliers in token usage.
Custom Reports: - Configurable date ranges - Multiple chart types - Export to CSV/PDF
Settings (/app/settings)
Configuration and security.
API Keys: - Issue new keys - Rotate existing keys - Revoke compromised keys
Tenant Config: Manage multi-tenant isolation settings.
Integrations: - Slack/Email notifications - LLM provider configuration - Webhook setup
Team Management: - Invite members - Assign roles (Admin, Editor, Viewer) - Remove access
Common Tasks
Investigating a Policy Violation
- Go to Overview and find the violation alert
- Click the violation to view trace details
- Review the input that triggered the policy
- Check if the policy needs adjustment
- If legitimate, update policy scope or conditions
Setting Up Cost Alerts
- Go to Budgets
- Click Set Budget or edit existing
- Configure alert thresholds (e.g., 50%, 80%, 100%)
- Choose notification method (email, Slack)
- Save configuration
Creating a Content Filter Policy
- Go to Policies → Templates
- Select a security template (e.g., PII Protection)
- Customize blocked patterns if needed
- Set scope (all agents or specific ones)
- Deploy the policy
Approving a Pending Action
- Go to Approvals
- Review the pending item
- Click to expand full context
- Make decision:
- Approve if action is legitimate
- Deny if action violates guidelines
- Add optional comment for audit trail
Debugging Agent Issues
- Go to Traces
- Filter by agent and time range
- Look for failed or denied requests
- Click trace for details
- Review policy evaluation results
- Adjust policies or agent configuration as needed
Demo Mode
The dashboard includes a demo mode for exploration without connecting live agents.
Enabling Demo Mode: 1. Sign in to the dashboard 2. Toggle "Demo Mode" in settings 3. Sample data will populate all views
Demo mode includes: - Sample agents and policies - Realistic trace data - Mock approval workflows
Design Language
The dashboard uses a "Swiss Industrial" aesthetic prioritizing information density and clarity.
Typography: - Monospace for data values - High-weight grotesque sans-serif for headings
Colors:
- Deep black background (#050505)
- Pure white text
- Signal red (#FF3B30) for errors/alerts
- Teal (#14B8A6) for success states
Troubleshooting
Dashboard Not Loading
- Clear browser cache
- Check your internet connection
- Try incognito/private mode
- Check status.fulcrumlayer.io
Data Not Updating
- Check WebSocket connection (green indicator in header)
- Refresh the page
- Verify agent is connected
- Check NATS server status
Can't Create Policies
- Verify you have Editor or Admin role
- Check organization permissions
- Ensure valid policy configuration
Approval Workflow Issues
- Verify policy is active
- Check approval conditions
- Review trace for evaluation details
Related Documentation
Last Updated: January 20, 2026