Skip to content

Instantly share code, notes, and snippets.

@ericzumba
Last active September 30, 2015 21:14
Show Gist options
  • Save ericzumba/7186a75f310044e62406 to your computer and use it in GitHub Desktop.
Save ericzumba/7186a75f310044e62406 to your computer and use it in GitHub Desktop.
how many docs added on solr per sec
tail -F /var/solr/logs/solr.log | grep --line-buffered -o -E "([0-9]* add)" | awk '{print strftime("%Y-%m-%d %r"), $1}'
tail -F /var/solr/logs/solr.log | grep --line-buffered -o -E "([0-9]* add)" | awk '{print strftime("%Y-%m-%d-%H-%M-%S"), $1}'
@ericzumba
Copy link
Author

Not quite there yet but

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment