For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Getting Started
    • Welcome
    • Architecture
    • Installation
    • Authentication
    • Quick Start
    • Support
  • Core Concepts
    • Guardrails
    • AI BOM
    • Red Teaming
    • Compliance
    • Audit Logs
  • Integrations
    • GitHub
    • GitLab
    • Azure DevOps
    • Bitbucket
    • Jira
    • LiteLLM
  • Usage Guides
    • Organization
    • Guardrails Setup
    • Policies
    • Scans
    • Red Team
    • Dashboards
  • Code Examples
    • cURL
    • Python
    • Node.js
    • API Patterns
On this page
  • Dashboards & Reporting
  • Executive Dashboard
  • Runtime Dashboard
  • Inventory Dashboard
  • Custom Reports
  • Scheduled Reports
  • Exporting Data
  • Next Steps
Usage Guides

Dashboards & Reporting

Was this page helpful?
Edit this page
Previous

cURL Examples

Next
Built with

Dashboards & Reporting

Track AI governance metrics and generate reports for stakeholders.

Executive Dashboard

High-level overview for leadership:

  • Compliance Status - Percentage compliance with frameworks
  • Risk Score - Overall organizational risk (0-100)
  • Trend - Improving/degrading over time
  • Critical Findings - Unresolved high-severity issues

Runtime Dashboard

Operational metrics:

  • Guardrail Evaluations - API call volume
  • Block Rate - % of requests blocked
  • Policy Violations - Types and counts
  • Latency - P50, P95, P99 response times

Inventory Dashboard

AI model catalog:

  • Models Detected - Total count and by type
  • Dependencies - Framework versions
  • Vulnerabilities - By severity
  • Compliance Gaps - By framework

Custom Reports

Generate downloadable reports:

$curl -X POST https://api.governanceai.com/v1/reports/generate \
> -H "Authorization: Bearer $API_KEY" \
> -d '{
> "name": "Q1 Compliance Report",
> "type": "compliance",
> "frameworks": ["SOC2", "HIPAA", "GDPR"],
> "period": "2024-Q1",
> "format": "pdf",
> "include_evidence": true
> }' \
> --output report.pdf

Scheduled Reports

Email reports automatically:

$curl -X POST https://api.governanceai.com/v1/reports/schedule \
> -H "Authorization: Bearer $API_KEY" \
> -d '{
> "name": "Weekly Governance Report",
> "schedule": "0 9 * * 1",
> "recipients": ["security@company.com"],
> "type": "executive_summary",
> "format": "html"
> }'

Exporting Data

Export for further analysis:

$# Export audit logs
$curl -H "Authorization: Bearer $API_KEY" \
> https://api.governanceai.com/v1/audit/export \
> -d '{"format": "csv"}' \
> --output audit_logs.csv
$
$# Export compliance data
$curl -H "Authorization: Bearer $API_KEY" \
> https://api.governanceai.com/v1/compliance/export \
> -d '{"framework": "SOC2", "format": "json"}' \
> --output soc2_data.json

Next Steps

  • Red-Team Campaigns - Run tests
  • Running Scans - Scan systems
  • API Reference - Report APIs