Skip to content

Instantly share code, notes, and snippets.

@marktriggs
Forked from devn/analyze.clj
Created March 27, 2010 10:07
Show Gist options
  • Save marktriggs/345896 to your computer and use it in GitHub Desktop.
Save marktriggs/345896 to your computer and use it in GitHub Desktop.
(defn count-ips [logfile]
(remove empty?
(persistent! (reduce
#(assoc! %1 %2 (inc (get %1 %2 0)))
(transient {})
(of-IPs
(find-lines "Deny tcp src outside" logfile))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment