| Class | Meaning | Typical Cause | First Action (初動) |
|---|---|---|---|
| 1xx | Information | プロトコル切り替え中の仮応答 | 無視して良い(通常ログに出ない) |
| 2xx | Success | 正常処理完了 | 監視対象外(200 OK以外は要確認の場合あり) |
| 3xx | Redirection | 転送、キャッシュ利用 | リダイレクトループ発生時はLB/CDN設定を確認 |
| 4xx | Client Error | リクエスト不正, 権限不足, WAF遮断 |
1. クライアントIP/UAを確認 2. WAF/LBのブロックログ確認 3. アプリログでバリデーションエラー確認 |
| 5xx | Server Error | アプリクラッシュ, DBタイムアウト, 容量不足 |
1. Web/Appサーバの死活確認 (systemctl status) 2. エラーログ (tail -f error.log) 3. リソース使用率 (top/htop) |
| Target | Typical Log Path (Linux) |
|---|---|
| Nginx | /var/log/nginx/error.log |
| Apache | /var/log/httpd/error_log |
| System | /var/log/messages or journalctl -xe |
| MySQL | /var/log/mysql/error.log |