ログ分析のCLIでRustで作られたやつ
基本的な書き方
cat apache.log | agrind "* | apache | count by status"
1時間ごとの集計
cat apache.log | agrind "* | apache | timeslice(parseDate(timestamp)) 60m as timestamp | count by timestamp | sort by timestamp"
ログ分析のCLIでRustで作られたやつ
基本的な書き方
cat apache.log | agrind "* | apache | count by status"
1時間ごとの集計
cat apache.log | agrind "* | apache | timeslice(parseDate(timestamp)) 60m as timestamp | count by timestamp | sort by timestamp"