You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I usually use the following script to output this timeline:
echo HOSTS in files
ls -l *
while read line; do
LDATE=${line#*:}
LDATE=${LDATE%%\ *}
LHOST=${line%%:*}
LHOST=${LHOST%%/*}
echo "$LDATE $LHOST ${line#*\ }"
done < <(grep --recursive "^2018.* \(REPL\|STORAGE\|CONTROL\|rsBackgroundSync\|assertion\)" *) | sort > combined.log
The text was updated successfully, but these errors were encountered:
njcosta
changed the title
show a timeline of events of selected threads from all replica set members
mloginfo - show a timeline of events of selected threads from all replica set members
Jun 29, 2019
I usually use the following script to output this timeline:
The text was updated successfully, but these errors were encountered: