UNPKG

claude-flow-novice

Version:

Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture Includes Local RuVector Accelerator and all CFN skills for complete functionality.

172 lines (171 loc) 4.75 kB
{ "dashboard": { "title": "Integration Standardization - Overview", "uid": "integration-overview", "timezone": "browser", "panels": [ { "id": 1, "title": "System Health Status", "type": "stat", "gridPos": {"h": 8, "w": 6, "x": 0, "y": 0}, "targets": [ { "expr": "sum(rate(http_requests_total{status=~'2..'}[5m])) / sum(rate(http_requests_total[5m]))", "refId": "A", "legendFormat": "Success Rate" } ], "fieldConfig": { "defaults": { "unit": "percentunit", "thresholds": { "mode": "absolute", "steps": [ {"color": "red", "value": null}, {"color": "yellow", "value": 0.95}, {"color": "green", "value": 0.99} ] } } } }, { "id": 2, "title": "Error Rate (5min)", "type": "stat", "gridPos": {"h": 8, "w": 6, "x": 6, "y": 0}, "targets": [ { "expr": "sum(rate(http_requests_total{status=~'5..'}[5m])) / sum(rate(http_requests_total[5m]))", "refId": "A" } ], "fieldConfig": { "defaults": { "unit": "percentunit", "thresholds": { "mode": "absolute", "steps": [ {"color": "green", "value": null}, {"color": "yellow", "value": 0.001}, {"color": "red", "value": 0.01} ] } } } }, { "id": 3, "title": "P50 Latency (ms)", "type": "stat", "gridPos": {"h": 8, "w": 6, "x": 12, "y": 0}, "targets": [ { "expr": "histogram_quantile(0.5, rate(http_request_duration_seconds_bucket[5m])) * 1000", "refId": "A" } ], "fieldConfig": { "defaults": { "unit": "ms", "thresholds": { "mode": "absolute", "steps": [ {"color": "green", "value": null}, {"color": "yellow", "value": 750}, {"color": "red", "value": 1000} ] } } } }, { "id": 4, "title": "Requests Per Second", "type": "graph", "gridPos": {"h": 8, "w": 6, "x": 18, "y": 0}, "targets": [ { "expr": "sum(rate(http_requests_total[1m]))", "refId": "A", "legendFormat": "RPS" } ] }, { "id": 5, "title": "Integration Point Status", "type": "table", "gridPos": {"h": 8, "w": 12, "x": 0, "y": 8}, "targets": [ { "expr": "integration_status", "format": "table", "instant": true, "refId": "A" } ], "transformations": [ { "id": "organize", "options": { "excludeByName": {}, "indexByName": {}, "renameByName": {} } } ] }, { "id": 6, "title": "Latency Distribution (P95, P99)", "type": "graph", "gridPos": {"h": 8, "w": 12, "x": 12, "y": 8}, "targets": [ { "expr": "histogram_quantile(0.95, rate(http_request_duration_seconds_bucket[5m])) * 1000", "refId": "A", "legendFormat": "P95" }, { "expr": "histogram_quantile(0.99, rate(http_request_duration_seconds_bucket[5m])) * 1000", "refId": "B", "legendFormat": "P99" } ] }, { "id": 7, "title": "CPU Usage by Service", "type": "piechart", "gridPos": {"h": 8, "w": 12, "x": 0, "y": 16}, "targets": [ { "expr": "sum by (job) (rate(process_cpu_seconds_total[5m]))", "refId": "A" } ] }, { "id": 8, "title": "Memory Usage by Service", "type": "piechart", "gridPos": {"h": 8, "w": 12, "x": 12, "y": 16}, "targets": [ { "expr": "sum by (job) (process_resident_memory_bytes / 1024 / 1024)", "refId": "A" } ] } ], "refresh": "30s", "schemaVersion": 27, "style": "dark", "time": { "from": "now-6h", "to": "now" } } }