Merge pull request #13417 from liewegas/wip-find-dups

script/find_dups_in_pg_log: scrip to find dup requests due to short pg logs

Reviewed-by: Josh Durgin <jdurgin@redhat.com>
This commit is contained in:
Josh Durgin 2017-02-14 14:01:16 -08:00 committed by GitHub
commit e6f99240cc

View File

@ -0,0 +1,22 @@
#!/bin/sh
# pipe output of grep for objectname in osd logs to me
#
# e.g.,
#
# zgrep smithi01817880-936 remote/*/log/*osd* | ~/src/ceph/src/script/find_dups_in_pg_log.sh
#
# or
#
# zcat remote/*/log/*osd* | ~/src/ceph/src/script/find_dups_in_pg_log.sh
#
# output will be any requests that appear in the pg log >1 time (along with
# their count)
#grep append_log | sort -k 2 | sed 's/.*append_log//' | awk '{print $3 " " $8}' | sort | uniq | awk '{print $2}' | sort | uniq -c | grep -v ' 1 '
grep append_log | grep ' by ' | \
perl -pe 's/(.*) \[([^ ]*) (.*) by ([^ ]+) (.*)/$2 $4/' | \
sort | uniq | \
awk '{print $2}' | \
sort | uniq -c | grep -v ' 1 '