etaoin

igrishaev 2019-07-15T07:09:53.014500Z

@mario.cordova.862 there is a note in readme that mentiones that

igrishaev 2019-07-15T07:10:14.015Z

you accumulate the logs and then parse them into requests

igrishaev 2019-07-15T07:10:48.015300Z

(def logs (atom []))

;; repeat that form from time to time
(do (swap! logs concat (dev/get-performance-logs c))
    true)

(count @logs)
;; 76

igrishaev 2019-07-15T07:11:01.015700Z

(dev/logs->requests @logs)