Remove obsolete merge-messages-logs tool.

(imported from commit 7feb10e74df4b788f0f9c6ba34cf23aa7db26d11)
This commit is contained in:
Tim Abbott 2013-07-24 17:25:38 -04:00
parent d07717178d
commit 5764e86edc
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
#!/usr/bin/env python
import simplejson
items_by_timestamp = {}
def read_log_file(filename):
with open(filename, 'r') as log:
for ln in log:
m = simplejson.loads(ln)
m["timestamp"] = float(m["timestamp"])
items_by_timestamp.setdefault(m["timestamp"], [])
items_by_timestamp[m["timestamp"]].append(m)
read_log_file("all_messages_log.merged.2012-12-05")
read_log_file("all_messages_log.staging.humbughq.com")
read_log_file("all_messages_log.app.humbughq.com")
with open("all_messages_log.monastery", "w") as log:
for stamp in sorted(items_by_timestamp.keys()):
for item in items_by_timestamp[stamp]:
log.write(simplejson.dumps(item) + "\n")