It have a logfile that stores event with a timestamp and a json message. For example:
timestamp {\"foo\": 12, \"bar\": 13}
I would l
your JSON is wrong {"foo": 12, "bar" 13}
{"foo": 12, "bar" 13}
should be:
{"foo": 12, "bar": 13}