Skip to content

Instantly share code, notes, and snippets.

@sarmbruster
Created December 17, 2013 08:22
Show Gist options
  • Save sarmbruster/8001713 to your computer and use it in GitHub Desktop.
Save sarmbruster/8001713 to your computer and use it in GitHub Desktop.
small script to extract logs from latest startup sequence of a Neo4j instance
#!/bin/bash
# tiny script to extract the logs of the latest startup sequence in a Neo4j instance
#
if (( $# == 0 )); then
echo "call me: $0 <path_to_messages.log>"
exit 1
fi
tac $1 | sed '/INITIALIZED diagnostics START/q' | tac | sed '/SERVER STARTED END/q'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment