API Performance Benchmarking (k6)
Establish API response time baselines and validate performance SLOs: k6 test script design (realistic traffic patterns not random requests but actual user workflows: authenticate → load dashboard → perform action), virtual user ramp-up (gradual load increase to simulate realistic traffic growth), scenario design (separate read-heavy and write-heavy operations, authenticated vs unauthenticated endpoints), metric collection (http_req_duration P50/P95/P99, http_req_failed, http_reqs/s exported to Grafana). Performance SLO validation: pass/fail threshold configuration in k6 integrated into CI/CD as pre-deployment gate.

