USENIX SREconを中心に、SRE とインシデント管理の分野で蓄積されてきた 30 以上の文献を横断し、ポストモーテムとインシデント分析の理論、実践、研究を体系的に構成した。 初学者が基礎から読み進め、実践者が深化し、研究者が未解決の問いを探索できる構成を目指す。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # !!!注意!!!: | |
| # このスクリプトはCドライブ配下のファイル・フォルダを探索するため「システムに負荷がかかる場合があります」 | |
| # 実行は自己責任でお願いします。 | |
| # 使い方: | |
| # powershell -ExecutionPolicy Bypass -File .\Scan-Bundle.ps1 <start_directory> | |
| param( | |
| [Parameter(Mandatory = $true)] | |
| [string]$TargetDirectory | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| trap cleanup SIGINT SIGTERM ERR EXIT | |
| script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
| usage() { | |
| cat <<EOF | |
| Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |