{ "dashboard": { "title": "FusionAGI Dvādaśa", "description": "Performance monitoring for the 12-headed AGI orchestrator", "tags": ["fusionagi", "ai", "orchestration"], "timezone": "browser", "panels": [ { "title": "HTTP Request Rate", "type": "timeseries", "gridPos": {"h": 8, "w": 12, "x": 0, "y": 0}, "targets": [{"expr": "rate(http_requests_total[5m])", "legendFormat": "{{method}} {{path}}"}] }, { "title": "Response Latency (p50/p95/p99)", "type": "timeseries", "gridPos": {"h": 8, "w": 12, "x": 12, "y": 0}, "targets": [ {"expr": "histogram_quantile(0.50, rate(http_request_duration_seconds_bucket[5m]))", "legendFormat": "p50"}, {"expr": "histogram_quantile(0.95, rate(http_request_duration_seconds_bucket[5m]))", "legendFormat": "p95"}, {"expr": "histogram_quantile(0.99, rate(http_request_duration_seconds_bucket[5m]))", "legendFormat": "p99"} ] }, { "title": "Error Rate", "type": "stat", "gridPos": {"h": 4, "w": 6, "x": 0, "y": 8}, "targets": [{"expr": "sum(rate(http_responses_total{status=~\"5..\"}[5m])) / sum(rate(http_responses_total[5m]))"}] }, { "title": "Active Sessions", "type": "stat", "gridPos": {"h": 4, "w": 6, "x": 6, "y": 8}, "targets": [{"expr": "fusionagi_active_sessions"}] }, { "title": "Head Analysis Duration", "type": "timeseries", "gridPos": {"h": 8, "w": 12, "x": 12, "y": 8}, "targets": [{"expr": "histogram_quantile(0.95, rate(head_analysis_duration_seconds_bucket[5m]))", "legendFormat": "{{head}}"}] }, { "title": "Consequence Engine Activity", "type": "timeseries", "gridPos": {"h": 8, "w": 12, "x": 0, "y": 16}, "targets": [ {"expr": "rate(consequence_choices_total[5m])", "legendFormat": "Choices"}, {"expr": "rate(consequence_surprises_total[5m])", "legendFormat": "Surprises"} ] }, { "title": "Cache Hit Rate", "type": "gauge", "gridPos": {"h": 4, "w": 6, "x": 12, "y": 16}, "targets": [{"expr": "sum(rate(cache_hits_total[5m])) / (sum(rate(cache_hits_total[5m])) + sum(rate(cache_misses_total[5m])))"}] }, { "title": "Connection Pool", "type": "stat", "gridPos": {"h": 4, "w": 6, "x": 18, "y": 16}, "targets": [ {"expr": "connection_pool_in_use", "legendFormat": "In Use"}, {"expr": "connection_pool_available", "legendFormat": "Available"} ] } ], "templating": { "list": [ {"name": "datasource", "type": "datasource", "query": "prometheus"}, {"name": "instance", "type": "query", "query": "label_values(up{job=\"fusionagi\"}, instance)"} ] } } }