Overview
Agent Governance Toolkit emits OpenTelemetry signals for every governance decision in your AI agent system:| Signal | Description | OTel Type |
|---|---|---|
governance.policy.evaluation | Policy check result (allow/deny/warn) with latency | Span |
governance.trust.score_change | Agent trust score movement with reason | Span |
governance.capability.request | Tool/capability access attempt (granted/denied) | Span |
governance.violation | Policy violation event with severity | Span + Event |
governance.policy.eval_count | Total policy evaluations | Counter |
governance.policy.violation_count | Total violations by severity | Counter |
governance.policy.eval_latency_ms | Policy evaluation latency | Histogram |
governance.trust.score | Current agent trust scores | Gauge |
Get Started
Initialize OpenLIT and the governance tracer
Add both initializations at your application entry point:
Instrument governance decisions
The toolkit automatically traces policy evaluations. You can also emit custom governance spans:
Custom Dashboard: Governance Health
Create a governance-specific dashboard in OpenLIT to monitor:- Policy evaluation rate — How many governance checks per minute
- Violation trend — Spikes in policy violations over time
- Evaluation latency — Are governance checks meeting the <5ms SLA
- Trust score distribution — Current trust scores across your agent fleet
| Widget | Metric | Type |
|---|---|---|
| Eval rate | governance.policy.eval_count | Stat |
| Violations over time | governance.policy.violation_count | Line chart |
| P99 eval latency | governance.policy.eval_latency_ms | Area chart |
| Trust scores | governance.trust.score | Bar chart |
Prometheus Metrics
If you use Prometheus + Grafana instead of (or alongside) OpenLIT, the toolkit also exposes a Prometheus endpoint:OpenLIT Dashboard
A pre-built Governance Health dashboard is available for import into OpenLIT. It provides:- Total Policy Evaluations — count with trend
- Total Violations — count with severity breakdown
- Violations Over Time — time-series chart
- Policy Eval Latency — p50/p99 latency
- Violations by Agent — which agents trigger the most violations
- Recent Violations — audit table with agent, tool, policy, verdict
Governance Health Dashboard JSON
Governance Health Dashboard JSON
Resources
Agent Governance Toolkit
Policy enforcement, trust verification, audit trails, and capability governance for AI agents
OpenLIT Dashboards
Build custom dashboards for governance health metrics

