https://github.com/Rudolph-Miller/elb-log.git
git clone 'https://github.com/Rudolph-Miller/elb-log.git'
(ql:quickload :elb-log)
(with-elb-log ((cons (asdf::getenv "AWS_ACCESS_KEY") (asdf::getenv "AWS_SECRET_KEY")) "elb-log")
(dolist (key (log-keys))
(do-something (log-lines key))))
;;; Same as above
(let* ((elb-log (make-elb-log (cons (asdf::getenv "AWS_ACCESS_KEY") (asdf::getenv "AWS_SECRET_KEY")) "elb-log"))
(log-bucket (make-log-bucket elb-log)))
(dolist (key (log-keys log-bucket))
(do-something (log-lines key))))
See Document.
This HTML is generated by Codex.
Copyright (c) 2015 Rudolph Miller
Licensed under the LLGPL License.