Skip to content

Instantly share code, notes, and snippets.

View frank-kutzey's full-sized avatar

Frank frank-kutzey

  • FRI:DAY
  • Berlin
View GitHub Profile
@frank-kutzey
frank-kutzey / looker_log_jsonify.py
Last active June 15, 2017 15:34
converts looker logs from plain text log to json like format - usefull for importing logs to EBK or ELK
#!/usr/bin/env python
from json import dumps
import sys
while True:
string = sys.stdin.readline()
if not string:
break