ワンクリックで
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 ページを確認してインストールできます。
SOC 職業分類に基づく
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.
| 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 |