Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
x 日の午前 11 時から x 日の午後 13 時までの 1 秒あたりの平均リクエスト数を示す Apache のログ ファイルを分析するには、どのコマンドを使用できますか? OSはLinux(レッドハット)
ありがとう
x 日の午前 11 時から午後 13 時まで
私の時計は13時まで進みません。Airstrip 1 の状況はどうですか?
あなたが午後1時を意味していると仮定すると....
何かのようなもの...
awk 'BEGIN {started=0} /\[29\/Oct\/2010:11/ { started=1} /\[29\/Oct\/2010:1[3-9]/ { print count/(2*60*60); exit; } // { if (started) count++; }' <access_log