원클릭으로
performance-testing
Run performance benchmarks for auth9-core API using hey load testing tool.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run performance benchmarks for auth9-core API using hey load testing tool.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Run E2E tests for Auth9 portal using Playwright with hybrid testing strategy.
Run tests, check logs, and troubleshoot Auth9 services in Docker and Kubernetes environments.
Execute scenario-based QA testing with browser automation, database validation, and automatic ticket creation for failures.
Reset Auth9 local Docker development environment to a clean state.
Rust coding conventions and patterns for auth9-core development.
Run tests and check coverage for Auth9 backend, frontend, and SDK with mock-based testing patterns.
SOC 직업 분류 기준
| name | performance-testing |
| description | Run performance benchmarks for auth9-core API using hey load testing tool. |
Run performance benchmarks for auth9-core using benchmark.sh.
# Install hey if needed
which hey || brew install hey
# Start Docker services
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d
sleep 15
# Start auth9-core in release mode
cd auth9-core && cargo run --release &
sleep 5
# Run benchmark
./scripts/benchmark.sh
# Quick test (50-200 concurrent connections)
./scripts/benchmark.sh
# Full test (50-2000 concurrent connections)
./scripts/benchmark.sh full
# Custom target URL
BASE_URL=http://your-server:8080 ./scripts/benchmark.sh
| Endpoint | Purpose | Measures |
|---|---|---|
/health | Pure compute | Rust/Axum baseline QPS |
/ready | DB + Redis | I/O bound performance |
/api/v1/tenants | Business logic | Real API performance |
| Rating | /health QPS | Notes |
|---|---|---|
| Excellent | > 30,000 | Optimal performance |
| Good | > 10,000 | Production ready |
| Fair | > 5,000 | Check bottlenecks |
| Low | < 5,000 | Likely debug mode |
| Issue | Solution |
|---|---|
| Low QPS | Ensure --release flag, check resource usage |
| Service not running | cd auth9-core && cargo run --release |
| DB/Redis issues | docker-compose ps, restart services |