Skip to content

Instantly share code, notes, and snippets.

@xeago
Created May 9, 2014 14:06
Show Gist options
  • Save xeago/e472d32a336f42f2d5b3 to your computer and use it in GitHub Desktop.
Save xeago/e472d32a336f42f2d5b3 to your computer and use it in GitHub Desktop.
(defn ratio-calc
[events]
(let [ratio
(/ (count (filter #(= "critical" (:state %)) events))
(count events))]
(assoc (last events) :metric ratio)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment