Files
mockupAWS/infrastructure/monitoring/grafana/dashboards/database.json
Luca Sacchi Ricciardi 38fd6cb562
Some checks failed
CI/CD - Build & Test / Backend Tests (push) Has been cancelled
CI/CD - Build & Test / Frontend Tests (push) Has been cancelled
CI/CD - Build & Test / Security Scans (push) Has been cancelled
CI/CD - Build & Test / Docker Build Test (push) Has been cancelled
CI/CD - Build & Test / Terraform Validate (push) Has been cancelled
Deploy to Production / Build & Test (push) Has been cancelled
Deploy to Production / Security Scan (push) Has been cancelled
Deploy to Production / Build Docker Images (push) Has been cancelled
Deploy to Production / Deploy to Staging (push) Has been cancelled
Deploy to Production / E2E Tests (push) Has been cancelled
Deploy to Production / Deploy to Production (push) Has been cancelled
E2E Tests / Run E2E Tests (push) Has been cancelled
E2E Tests / Visual Regression Tests (push) Has been cancelled
E2E Tests / Smoke Tests (push) Has been cancelled
release: v1.0.0 - Production Ready
Complete production-ready release with all v1.0.0 features:

Architecture & Planning (@spec-architect):
- Production architecture design with scalability and HA
- Security audit plan and compliance review
- Technical debt assessment and refactoring roadmap

Database (@db-engineer):
- 17 performance indexes and 3 materialized views
- PgBouncer connection pooling
- Automated backup/restore with PITR (RTO<1h, RPO<5min)
- Data archiving strategy (~65% storage savings)

Backend (@backend-dev):
- Redis caching layer with 3-tier strategy
- Celery async jobs with Flower monitoring
- API v2 with rate limiting (tiered: free/premium/enterprise)
- Prometheus metrics and OpenTelemetry tracing
- Security hardening (headers, audit logging)

Frontend (@frontend-dev):
- Bundle optimization: 308KB (code splitting, lazy loading)
- Onboarding tutorial (react-joyride)
- Command palette (Cmd+K) and keyboard shortcuts
- Analytics dashboard with cost predictions
- i18n (English + Italian) and WCAG 2.1 AA compliance

DevOps (@devops-engineer):
- Complete deployment guide (Docker, K8s, AWS ECS)
- Terraform AWS infrastructure (Multi-AZ RDS, ElastiCache, ECS)
- CI/CD pipelines with blue-green deployment
- Prometheus + Grafana monitoring with 15+ alert rules
- SLA definition and incident response procedures

QA (@qa-engineer):
- 153+ E2E test cases (85% coverage)
- k6 performance tests (1000+ concurrent users, p95<200ms)
- Security testing (0 critical vulnerabilities)
- Cross-browser and mobile testing
- Official QA sign-off

Production Features:
 Horizontal scaling ready
 99.9% uptime target
 <200ms response time (p95)
 Enterprise-grade security
 Complete observability
 Disaster recovery
 SLA monitoring

Ready for production deployment! 🚀
2026-04-07 20:14:51 +02:00

243 lines
6.2 KiB
JSON

{
"dashboard": {
"id": null,
"uid": "mockupaws-database",
"title": "mockupAWS - Database",
"tags": ["mockupaws", "database", "postgresql"],
"timezone": "UTC",
"schemaVersion": 36,
"version": 1,
"refresh": "30s",
"panels": [
{
"id": 1,
"title": "PostgreSQL Status",
"type": "stat",
"targets": [
{
"expr": "pg_up",
"legendFormat": "Status",
"refId": "A"
}
],
"fieldConfig": {
"defaults": {
"mappings": [
{"options": {"0": {"text": "Down", "color": "red"}}, "type": "value"},
{"options": {"1": {"text": "Up", "color": "green"}}, "type": "value"}
]
}
},
"gridPos": {"h": 4, "w": 6, "x": 0, "y": 0}
},
{
"id": 2,
"title": "Active Connections",
"type": "stat",
"targets": [
{
"expr": "pg_stat_activity_count{state=\"active\"}",
"legendFormat": "Active",
"refId": "A"
},
{
"expr": "pg_stat_activity_count{state=\"idle\"}",
"legendFormat": "Idle",
"refId": "B"
}
],
"gridPos": {"h": 4, "w": 6, "x": 6, "y": 0}
},
{
"id": 3,
"title": "Connection Usage %",
"type": "gauge",
"targets": [
{
"expr": "pg_stat_activity_count / pg_settings_max_connections * 100",
"legendFormat": "Usage %",
"refId": "A"
}
],
"fieldConfig": {
"defaults": {
"unit": "percent",
"min": 0,
"max": 100,
"thresholds": {
"mode": "absolute",
"steps": [
{"color": "green", "value": null},
{"color": "yellow", "value": 70},
{"color": "red", "value": 90}
]
}
}
},
"gridPos": {"h": 4, "w": 6, "x": 12, "y": 0}
},
{
"id": 4,
"title": "Database Size",
"type": "stat",
"targets": [
{
"expr": "pg_database_size_bytes / 1024 / 1024 / 1024",
"legendFormat": "Size GB",
"refId": "A"
}
],
"fieldConfig": {
"defaults": {
"unit": "decgbytes"
}
},
"gridPos": {"h": 4, "w": 6, "x": 18, "y": 0}
},
{
"id": 5,
"title": "Connections Over Time",
"type": "timeseries",
"targets": [
{
"expr": "pg_stat_activity_count{state=\"active\"}",
"legendFormat": "Active",
"refId": "A"
},
{
"expr": "pg_stat_activity_count{state=\"idle\"}",
"legendFormat": "Idle",
"refId": "B"
},
{
"expr": "pg_stat_activity_count{state=\"idle in transaction\"}",
"legendFormat": "Idle in Transaction",
"refId": "C"
}
],
"gridPos": {"h": 8, "w": 12, "x": 0, "y": 4}
},
{
"id": 6,
"title": "Transaction Rate",
"type": "timeseries",
"targets": [
{
"expr": "rate(pg_stat_database_xact_commit[5m])",
"legendFormat": "Commits/sec",
"refId": "A"
},
{
"expr": "rate(pg_stat_database_xact_rollback[5m])",
"legendFormat": "Rollbacks/sec",
"refId": "B"
}
],
"gridPos": {"h": 8, "w": 12, "x": 12, "y": 4}
},
{
"id": 7,
"title": "Query Performance",
"type": "timeseries",
"targets": [
{
"expr": "rate(pg_stat_statements_total_time[5m]) / rate(pg_stat_statements_calls[5m])",
"legendFormat": "Avg Query Time (ms)",
"refId": "A"
}
],
"fieldConfig": {
"defaults": {
"unit": "ms"
}
},
"gridPos": {"h": 8, "w": 12, "x": 0, "y": 12}
},
{
"id": 8,
"title": "Slowest Queries",
"type": "table",
"targets": [
{
"expr": "topk(10, pg_stat_statements_mean_time)",
"format": "table",
"instant": true,
"refId": "A"
}
],
"transformations": [
{
"id": "organize",
"options": {
"excludeByName": {
"Time": true
},
"renameByName": {
"query": "Query",
"Value": "Mean Time (ms)"
}
}
}
],
"gridPos": {"h": 8, "w": 12, "x": 12, "y": 12}
},
{
"id": 9,
"title": "Cache Hit Ratio",
"type": "timeseries",
"targets": [
{
"expr": "pg_stat_database_blks_hit / (pg_stat_database_blks_hit + pg_stat_database_blks_read) * 100",
"legendFormat": "Cache Hit Ratio %",
"refId": "A"
}
],
"fieldConfig": {
"defaults": {
"unit": "percent",
"min": 0,
"max": 100,
"thresholds": {
"mode": "absolute",
"steps": [
{"color": "red", "value": null},
{"color": "yellow", "value": 95},
{"color": "green", "value": 99}
]
}
}
},
"gridPos": {"h": 8, "w": 12, "x": 0, "y": 20}
},
{
"id": 10,
"title": "Table Bloat",
"type": "table",
"targets": [
{
"expr": "pg_stat_user_tables_n_dead_tup",
"format": "table",
"instant": true,
"refId": "A"
}
],
"transformations": [
{
"id": "organize",
"options": {
"excludeByName": {
"Time": true
},
"renameByName": {
"relname": "Table",
"Value": "Dead Tuples"
}
}
}
],
"gridPos": {"h": 8, "w": 12, "x": 12, "y": 20}
}
]
}
}