-
Notifications
You must be signed in to change notification settings - Fork 196
/
metrics_logging.py
40 lines (33 loc) · 1.07 KB
/
metrics_logging.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import time
import json
import logging
from path import Path
class MetricsLogger(object):
def __init__(self, fname, reinitialize=False):
self.fname = Path(fname)
self.reinitialize = reinitialize
if self.fname.exists():
if self.reinitialize:
logging.warn('{} exists, deleting'.format(self.fname))
self.fname.remove()
def log(self, record=None, **kwargs):
"""
Assumption: no newlines in the input.
"""
if record is None:
record = {}
record.update(kwargs)
record['_stamp'] = time.time()
with open(self.fname, 'ab') as f:
f.write(json.dumps(record, ensure_ascii=True)+'\n')
def read_records(fname):
""" convenience for reading back. """
skipped = 0
with open(fname, 'rb') as f:
for line in f:
if not line.endswith('\n'):
skipped += 1
continue
yield json.loads(line.strip())
if skipped > 0:
logging.warn('skipped {} lines'.format(skipped))