Dashboards & Reporting

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