Created
November 20, 2014 11:10
-
-
Save Eyjafjallajokull/18a403174bb372ee207a to your computer and use it in GitHub Desktop.
varnishlog parser
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import re | |
# varnishlog | python varnishlogparser.py '.*mohito.com.*' | python varnishlogparser.py '.*URL.* /$' | |
history = [] | |
current_id = None | |
match_id = None | |
regex = sys.argv[1] | |
def get_id(line): | |
tmp = line.strip().split() | |
if tmp: | |
return tmp[0] | |
for line in sys.stdin: | |
history.append(line) | |
current_id = get_id(line) | |
if re.match(regex, line): | |
match_id = current_id | |
continue | |
if match_id != None and match_id != current_id: | |
for i in history: | |
if get_id(i) == match_id: | |
print i, | |
match_id = None | |
history = [] | |
print "\n\n" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment